Class ActiveDirectoryGroupCollection
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents a collection of Active Directory groups.
public class ActiveDirectoryGroupCollection : Collection<ActiveDirectoryGroup>, IList<ActiveDirectoryGroup>, ICollection<ActiveDirectoryGroup>, IList, ICollection, IReadOnlyList<ActiveDirectoryGroup>, IReadOnlyCollection<ActiveDirectoryGroup>, IEnumerable<ActiveDirectoryGroup>, IEnumerable
- Inheritance
-
ActiveDirectoryGroupCollection
- Implements
- Inherited Members
Constructors
ActiveDirectoryGroupCollection()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.ActiveDirectoryGroupCollection class.
public ActiveDirectoryGroupCollection()
Methods
ExistsByIdentifier(Guid)
Determines whether a CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup with the specified unique identifier exists within the collection.
public bool ExistsByIdentifier(Guid identifier)
Parameters
identifier
GuidThe unique identifier of the CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup to locate.
Returns
- bool
A System.Boolean value that indicates whether a CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup with the specified unique identifier exists within the collection.
ExistsBySamAccountName(string)
Determines whether a CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup with the specified SAM account name exists within the collection.
public bool ExistsBySamAccountName(string samAccountName)
Parameters
samAccountName
stringThe SAM account name of the CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup to locate.
Returns
- bool
A System.Boolean value that indicates whether a CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup with the specified SAM account name exists within the collection.
FindByIdentifier(Guid)
Returns the CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup with the specified unique identifier, or null if no CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup with that unique identifier is found.
public ActiveDirectoryGroup FindByIdentifier(Guid identifier)
Parameters
identifier
GuidThe unique identifier of the CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup to locate.
Returns
- ActiveDirectoryGroup
The CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup with the specified unique identifier.
FindBySamAccountName(string)
Returns the CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup with the specified SAM account name, or null if no CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup with that SAM account name is found.
public ActiveDirectoryGroup FindBySamAccountName(string samAccountName)
Parameters
samAccountName
stringThe SAM account name of the CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup to locate.
Returns
- ActiveDirectoryGroup
The CENTREL.XIA.Configuration.Types.ActiveDirectoryGroup with the specified SAM account name.
Sort()
Sorts the values in the collection.
public void Sort()