|
Bexel Manager API
|
Public Member Functions | |
| Element | GetElementByID (ElementID id) |
| Retrieves the element with the specified ID. More... | |
| Element | GetElementByID (int internalID) |
| Retrieves the element with the specified internal ID. More... | |
| Element | GetElementByID (string uniqueID) |
| Retrieves the element with the specified unique ID. More... | |
| Element | GetElementByID (Guid uniqueID) |
| Retrieves the element with the specified unique ID. More... | |
| IEnumerable< Element > | GetElementsByID (string uniqueID) |
| Retrieves the elements with the specified unique ID. More... | |
| IEnumerable< Element > | GetElementsByID (Guid uniqueID) |
| Retrieves the elements with the specified unique ID. More... | |
| bool | ContainsKey (ElementID id) |
| Determines whether the collection contains the element with the specified ID. More... | |
| bool | ContainsKey (int internalID) |
| Determines whether the collection contains the element with the specified internal ID. More... | |
Additional Inherited Members | |
Properties inherited from Bexel.Api.IReadOnlyElementCollection | |
| Element | this[ElementID id] [get] |
| Retrieves the element with the specified ID. More... | |
| Element | this[int internalID] [get] |
| Retrieves the element with the specified internal ID. More... | |
| bool Bexel.Api.ReadOnlyElementCollection.ContainsKey | ( | ElementID | id | ) |
Determines whether the collection contains the element with the specified ID.
| id | ID of the element. |
Implements Bexel.Api.IReadOnlyElementCollection.
| bool Bexel.Api.ReadOnlyElementCollection.ContainsKey | ( | int | internalID | ) |
Determines whether the collection contains the element with the specified internal ID.
| internalID | Internal ID of the element. |
Implements Bexel.Api.IReadOnlyElementCollection.
Retrieves the element with the specified ID.
| id | ID of the element. |
Implements Bexel.Api.IReadOnlyElementCollection.
| Element Bexel.Api.ReadOnlyElementCollection.GetElementByID | ( | int | internalID | ) |
Retrieves the element with the specified internal ID.
| internalID | Internal ID of the element. |
Implements Bexel.Api.IReadOnlyElementCollection.
| Element Bexel.Api.ReadOnlyElementCollection.GetElementByID | ( | string | uniqueID | ) |
Retrieves the element with the specified unique ID.
| uniqueID | Unique ID of the element. |
If multiple elements with the same unique ID exist, the first element will be returned.
| System.ArgumentNullException | uniqueID is null. |
| System.FormatException | uniqueID is not a valid GUID format. |
Implements Bexel.Api.IReadOnlyElementCollection.
| Element Bexel.Api.ReadOnlyElementCollection.GetElementByID | ( | Guid | uniqueID | ) |
Retrieves the element with the specified unique ID.
| uniqueID | Unique ID of the element. |
If multiple elements with the same unique ID exist, the first element will be returned.
Implements Bexel.Api.IReadOnlyElementCollection.
| IEnumerable<Element> Bexel.Api.ReadOnlyElementCollection.GetElementsByID | ( | string | uniqueID | ) |
Retrieves the elements with the specified unique ID.
| uniqueID | Unique ID of the element. |
Implements Bexel.Api.IReadOnlyElementCollection.
| IEnumerable<Element> Bexel.Api.ReadOnlyElementCollection.GetElementsByID | ( | Guid | uniqueID | ) |
Retrieves the elements with the specified unique ID.
| uniqueID | Unique ID of the element. |
Implements Bexel.Api.IReadOnlyElementCollection.