LocatorFlags Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The LocatorFlags enumeration specifies data required to locate a domain controller.
This enumeration supports a bitwise combination of its member values.
public enum class LocatorFlags
[System.Flags]
public enum LocatorFlags
[<System.Flags>]
type LocatorFlags =
Public Enum LocatorFlags
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No data required. The value is equal to 0 or 0x0. |
ForceRediscovery | 1 | Forces the cached domain controller to be ignored. The value is equal to 1 or 0x1. |
DirectoryServicesRequired | 16 | Requires that the returned domain controller support Windows 2000 or later. The value is equal to 16 or 0x10. |
DirectoryServicesPreferred | 32 | Attempts to find a domain controller that supports directory service functions (Windows 2000 or later). The value is equal to 32 or 0x20. |
GCRequired | 64 | Requires that the returned domain controller be a global catalog server for the forest of domains with this domain as the root. The value is equal to 64 or 0x40. |
PdcRequired | 128 | Requires that the returned domain controller be the primary domain controller for the domain. The value is equal to 128 or 0x80. |
IPRequired | 512 | Sets the Internet protocol address of the domain controller in the DomainControllerAddress member of DomainControllerInfo. The value is equal to 512 or 0x200. |
KdcRequired | 1024 | Requires that the returned domain controller be currently running the Kerberos Key Distribution Center service. The value is equal to 1024 or 0x400. |
TimeServerRequired | 2048 | Requires that the returned domain controller be currently running the Windows Time Service. The value is equal to 2048 or 0x800. |
WriteableRequired | 4096 | Requires that the returned domain controller be writable. The value is equal to 4096 or 0x1000. |
GoodTimeServerPreferred | 8192 | Attempts to find a domain controller that is a reliable time server. The value is equal to 8192 or 0x2000. |
AvoidSelf | 16384 | Specifies that the domain controller returned should not be the current computer. The value is equal to 16384 or 0x4000. |
OnlyLdapNeeded | 32768 | Specifies that the server returned is an LDAP server. The value is equal to 32768 or 0x8000. |
IsFlatName | 65536 | Specifies that the DomainName parameter is a flat name. The value is equal to 65536 or 0x10000. |
IsDnsName | 131072 | Specifies that the DomainName parameter is a DNS name. The value is equal to 131072 or 0x20000. |
ReturnDnsName | 1073741824 | Specifies that the name returned should be a DNS name. The value is equal to 1073741824 or 0x40000000. |
ReturnFlatName | 2147483648 | Specifies that the name should be a flat name. The value is equal to 2147483648 or 0x80000000. |
Applies to
.NET