Class ActiveDirectoryGlobals
Some configuration settings
Inheritance
System.Object
ActiveDirectoryGlobals
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Dapplo.ActiveDirectory
Assembly: Dapplo.ActiveDirectory.dll
Syntax
public static class ActiveDirectoryGlobals
Properties
| Improve this Doc View SourceAuthenticationType
Specify the value for AuthenticationTypes to be used when none is supplied. The default according to here is Secure
Declaration
public static AuthenticationTypes AuthenticationType { get; set; }
Property Value
Type | Description |
---|---|
System.DirectoryServices.AuthenticationTypes |
CacheResults
Specify if the search is cached
Declaration
public static bool CacheResults { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
DefaultDomainServerName
This is the default domain server for the current user, which is cached but can be overwritten by the application.
Declaration
public static string DefaultDomainServerName { get; set; }
Property Value
Type | Description |
---|---|
System.String | string |
Factory
This is the factory used to generate all the objects in the result
Declaration
public static IAdObjectFactory Factory { get; set; }
Property Value
Type | Description |
---|---|
IAdObjectFactory |
LdapUriFormat
The format used for the LDAP URI building
Declaration
public static string LdapUriFormat { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PageSize
Specify the global page size for searches Note: 0 means no page size, and retrieve everything up to the SizeLimit Everything smaller than the SizeLimit (but gt 0) will make the search ignore the size limit!
Declaration
public static int PageSize { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
SizeLimit
Specify the global size limit for searches Note: 0 means no limit If size limit is large than page size, this limit is ignored!!!
Declaration
public static int SizeLimit { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |