Search Results for

    Show / Hide Table of Contents

    Class DomainCollection

    A collection of CfgDomain objects.

    Inheritance
    object
    CollectionBase
    EnumerableTCollectionBase<Domain>
    DomainCollection
    Implements
    IList
    ICollection
    IEnumerable<Domain>
    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
    Namespace: ABB.Robotics.Controllers.ConfigurationDomain
    Assembly: ABB.Robotics.Controllers.PC.dll
    Syntax
    public class DomainCollection : EnumerableTCollectionBase<Domain>, IList, ICollection, IEnumerable<Domain>, IEnumerable

    Constructors

    View Source

    DomainCollection()

    Declaration
    public DomainCollection()

    Properties

    View Source

    this[int]

    Gets the Domain at the specified index.

    Declaration
    public Domain this[int index] { get; }
    Parameters
    Type Name Description
    int index
    Property Value
    Type Description
    Domain

    The value.

    View Source

    this[string]

    Gets theDomain with the specified name.

    Declaration
    public Domain this[string name] { get; }
    Parameters
    Type Name Description
    string name
    Property Value
    Type Description
    Domain

    The value.

    Methods

    View Source

    Add(Domain)

    Adds the specified value.

    Declaration
    public int Add(Domain value)
    Parameters
    Type Name Description
    Domain value

    The value.

    Returns
    Type Description
    int
    View Source

    Contains(Domain)

    Determines whether the collection contains the specified value.

    Declaration
    public bool Contains(Domain value)
    Parameters
    Type Name Description
    Domain value

    The value.

    Returns
    Type Description
    bool

    true if value is contained; otherwise, false.

    View Source

    IndexOf(Domain)

    Get the index of the domain.

    Declaration
    public int IndexOf(Domain value)
    Parameters
    Type Name Description
    Domain value

    The value.

    Returns
    Type Description
    int

    Index of the domain, otherwise -1.

    View Source

    IndexOf(string)

    Gets the index of the domain with the specified name.

    Declaration
    public int IndexOf(string name)
    Parameters
    Type Name Description
    string name

    The name.

    Returns
    Type Description
    int

    The index of the domain; otherwise -1.

    View Source

    Insert(int, Domain)

    Inserts the specified index.

    Declaration
    public void Insert(int index, Domain value)
    Parameters
    Type Name Description
    int index

    The index.

    Domain value

    The value.

    View Source

    Remove(Domain)

    Removes the specified value.

    Declaration
    public void Remove(Domain value)
    Parameters
    Type Name Description
    Domain value

    The value.

    Implements

    IList
    ICollection
    IEnumerable<T>
    IEnumerable
    • View Source
    In this article
    Back to top Copyright © 2026 ABB Robotics