| ActiveDirectoryGetEntryByGUID Method |
Gets an entry given its GUID.
Namespace:
Galactic.ActiveDirectory
Assembly:
Galactic.ActiveDirectory (in Galactic.ActiveDirectory.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public SearchResultEntry GetEntryByGUID(
Guid guid,
List<string> attributes = null
)
Public Function GetEntryByGUID (
guid As Guid,
Optional attributes As List(Of String) = Nothing
) As SearchResultEntry
public:
SearchResultEntry^ GetEntryByGUID(
Guid guid,
List<String^>^ attributes = nullptr
)
member GetEntryByGUID :
guid : Guid *
?attributes : List<string>
(* Defaults:
let _attributes = defaultArg attributes null
*)
-> SearchResultEntry
Parameters
- guid
- Type: SystemGuid
The GUID of the entry to get. - attributes (Optional)
- Type: System.Collections.GenericListString
(Optional) The attributes that should be returned in the entry found. If not provided, all non-constructed attributes are returned. Constructed attributes must be explicitly defined.
Return Value
Type:
SearchResultEntryThe SearchResultEntry object found, or null if not found.
See Also