| ActiveDirectoryGetByteAttributeValues Method |
Gets all byte attribute values from the supplied entry.
Namespace:
Galactic.ActiveDirectory
Assembly:
Galactic.ActiveDirectory (in Galactic.ActiveDirectory.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public byte[][] GetByteAttributeValues(
string name,
SearchResultEntry entry
)
Public Function GetByteAttributeValues (
name As String,
entry As SearchResultEntry
) As Byte()()
public:
array<array<unsigned char>^>^ GetByteAttributeValues(
String^ name,
SearchResultEntry^ entry
)
member GetByteAttributeValues :
name : string *
entry : SearchResultEntry -> byte[][]
Parameters
- name
- Type: SystemString
The name of the attribute to retrieve. - entry
- Type: System.DirectoryServices.ProtocolsSearchResultEntry
The SearchResultEntry to get the attribute value from.
Return Value
Type:
ByteAn array of byte array values held in the attribute, or an empty array of byte arrays if there was an error retrieving the values or the attribute was empty.
See Also