Skip to content

ERPConnect.Utils.BatchStepCollection

Namespace: ERPConnect.Utils
Assembly: ERPConnectStandard20.dll

BatchStepCollection represents a collection of BatchStep objects

public class BatchStepCollection : CollectionBase, IList, ICollection, IEnumerable

Inheritance

objectCollectionBaseBatchStepCollection

Implements

IList, ICollection, IEnumerable

Inherited Members

CollectionBase.Clear(), CollectionBase.RemoveAt(int), CollectionBase.GetEnumerator(), CollectionBase.OnSet(int, object, object), CollectionBase.OnInsert(int, object), CollectionBase.OnClear(), CollectionBase.OnRemove(int, object), CollectionBase.OnValidate(object), CollectionBase.OnSetComplete(int, object, object), CollectionBase.OnInsertComplete(int, object), CollectionBase.OnClearComplete(), CollectionBase.OnRemoveComplete(int, object), CollectionBase.InnerList, CollectionBase.List, CollectionBase.Capacity, CollectionBase.Count, object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Constructors

BatchStepCollection()

Initializes an empty collection over BatchStep objects

public BatchStepCollection()

Properties

this[int]

Returns a BatchStep object by a given index

public virtual BatchStep this[int Index] { get; set; }

Property Value

BatchStep

Methods

Add(BatchStep)

Adds a new BatchStep object to the collection

public virtual void Add(BatchStep NewParameter)

Parameters

NewParameter BatchStep

The BatchStep object to be added

Insert(int, BatchStep)

Inserts a new BatchStep object

public virtual void Insert(int Index, BatchStep NewParameter)

Parameters

Index int

Index of the new BatchStep object

NewParameter BatchStep

The BatchStep object to be added