| LDAPGetStringAttributeValues Method |
Gets all string attribute values from the supplied entry.
Namespace:
Galactic.LDAP
Assembly:
Galactic.LDAP (in Galactic.LDAP.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public List<string> GetStringAttributeValues(
string name,
SearchResultEntry entry
)
Public Function GetStringAttributeValues (
name As String,
entry As SearchResultEntry
) As List(Of String)
public:
List<String^>^ GetStringAttributeValues(
String^ name,
SearchResultEntry^ entry
)
member GetStringAttributeValues :
name : string *
entry : SearchResultEntry -> List<string>
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:
ListStringA list of string values held in the attribute, or null if there was an error retrieving the values or the attribute was empty.
See Also