API Reference
Class
LdapToolQueryRow
One typed LDAP row with pre-formatted attributes.
Inheritance
- Object
- LdapToolQueryRow
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Property DomainInfoQueryResult.RootDse
- Property LdapToolObjectGetQueryResult.Object
- Property LdapToolObjectResolveRow.Object
- Property LdapToolPagedQueryResult.Rows
- Property LdapToolQueryResult.Rows
- Property LdapToolSearchFacetsQueryResult.Samples
- Property LdapToolSearchQueryResult.Results
- Property LdapToolSingleQueryResult.Row
- Property LdapToolSpnSearchQueryResult.Results
Accepted by parameters
- Extension method LdapToolQueryRow.GetInt32
- Extension method LdapToolQueryRow.GetInt64
- Extension method LdapToolQueryRow.GetString
- Extension method LdapToolQueryRow.GetStringValues
- Method LdapToolQueryValueExtensions.GetInt32
- Method LdapToolQueryValueExtensions.GetInt64
- Method LdapToolQueryValueExtensions.GetString
- Method LdapToolQueryValueExtensions.GetStringValues
Constructors
public LdapToolQueryRow() #Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
Properties
Extension Methods
public static Nullable<Int32> GetInt32(LdapToolQueryRow row, String key) #Returns:
Nullable<Int32>Reads a best-effort 32-bit integer value from an LDAP query row.
Parameters
- row ADPlayground.Helpers.LdapToolQueryRow
- LDAP query row.
- key System.String
- Attribute name.
Returns
Parsed integer value when possible; otherwise null.
public static Nullable<Int64> GetInt64(LdapToolQueryRow row, String key) #Returns:
Nullable<Int64>Reads a best-effort 64-bit integer value from an LDAP query row.
Parameters
- row ADPlayground.Helpers.LdapToolQueryRow
- LDAP query row.
- key System.String
- Attribute name.
Returns
Parsed integer value when possible; otherwise null.
public static String GetString(LdapToolQueryRow row, String key) #Returns:
StringReads a best-effort string value from an LDAP query row.
Parameters
- row ADPlayground.Helpers.LdapToolQueryRow
- LDAP query row.
- key System.String
- Attribute name.
Returns
Attribute value as string, or an empty string when not present.
public static IReadOnlyList<String> GetStringValues(LdapToolQueryRow row, String key) #Returns:
IReadOnlyList<String>Reads best-effort string values from an LDAP query row.
Parameters
- row ADPlayground.Helpers.LdapToolQueryRow
- LDAP query row.
- key System.String
- Attribute name.
Returns
Attribute values as strings (empty when missing).