Show / Hide Table of Contents

Class CreateProcessAttributeList

A list of attributes for process and thread creation.

Inheritance
System.Object
CreateProcessAttributeList
Implements
System.Collections.Generic.ICollection<CreateProcessAttributeList.CreateProcessAttribute>
System.Collections.Generic.IEnumerable<CreateProcessAttributeList.CreateProcessAttribute>
System.Collections.IEnumerable
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Fs.Processes
Assembly: Fs.Processes.dll
Syntax
public class CreateProcessAttributeList : ICollection<CreateProcessAttributeList.CreateProcessAttribute>, IEnumerable<CreateProcessAttributeList.CreateProcessAttribute>, IEnumerable

Constructors

| Improve this Doc View Source

CreateProcessAttributeList()

Creates a new instance of CreateProcessAttributeList.

Declaration
public CreateProcessAttributeList()

Properties

| Improve this Doc View Source

Count

Gets the number of attributes in the list.

Declaration
public int Count { get; }
Property Value
Type Description
System.Int32

Methods

| Improve this Doc View Source

Add(CreateProcessAttributeList.CreateProcessAttribute)

Adds the item attribute to the attribute list. Any previous item of the same type is replaced.

Declaration
public void Add(CreateProcessAttributeList.CreateProcessAttribute item)
Parameters
Type Name Description
CreateProcessAttributeList.CreateProcessAttribute item

The attribute to add.

| Improve this Doc View Source

Clear()

Removes all attributes from the list.

Declaration
public void Clear()
| Improve this Doc View Source

Contains(CreateProcessAttributeList.CreateProcessAttribute)

Determines if the item attribute is part of the list.

Declaration
public bool Contains(CreateProcessAttributeList.CreateProcessAttribute item)
Parameters
Type Name Description
CreateProcessAttributeList.CreateProcessAttribute item

The attribute to locate.

Returns
Type Description
System.Boolean

true if the attribute is contained by the list; otherwise, false.

| Improve this Doc View Source

GetEnumerator()

Gets an enumerator for the list of attributes.

Declaration
public IEnumerator<CreateProcessAttributeList.CreateProcessAttribute> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<CreateProcessAttributeList.CreateProcessAttribute>

The enumerator.

| Improve this Doc View Source

Remove(CreateProcessAttributeList.CreateProcessAttribute)

Removes the item attribute from the list.

Declaration
public bool Remove(CreateProcessAttributeList.CreateProcessAttribute item)
Parameters
Type Name Description
CreateProcessAttributeList.CreateProcessAttribute item

The attribute to remove.

Returns
Type Description
System.Boolean

true if the attribute was contained by the list and removed; otherwise, false.

Explicit Interface Implementations

| Improve this Doc View Source

ICollection<CreateProcessAttributeList.CreateProcessAttribute>.CopyTo(CreateProcessAttributeList.CreateProcessAttribute[], Int32)

Declaration
void ICollection<CreateProcessAttributeList.CreateProcessAttribute>.CopyTo(CreateProcessAttributeList.CreateProcessAttribute[] array, int arrayIndex)
Parameters
Type Name Description
CreateProcessAttributeList.CreateProcessAttribute[] array
System.Int32 arrayIndex
| Improve this Doc View Source

ICollection<CreateProcessAttributeList.CreateProcessAttribute>.IsReadOnly

Declaration
bool ICollection<CreateProcessAttributeList.CreateProcessAttribute>.IsReadOnly { get; }
Returns
Type Description
System.Boolean
| Improve this Doc View Source

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator

Implements

System.Collections.Generic.ICollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
  • Improve this Doc
  • View Source
Back to top Generated by DocFX