public static class DsGetDC.DOMAIN_CONTROLLER_INFO extends Structure
Modifier and Type | Class and Description |
---|---|
static class |
DsGetDC.DOMAIN_CONTROLLER_INFO.ByReference |
Structure.ByValue, Structure.StructField
Modifier and Type | Field and Description |
---|---|
WString |
ClientSiteName
Pointer to a null-terminated WString that specifies the name of the
site that the computer belongs to.
|
WString |
DcSiteName
Pointer to a null-terminated WString that specifies the name of the
site where the domain controller is located.
|
WString |
DnsForestName
Pointer to a null-terminated WString that specifies the name of the
domain at the root of the DS tree.
|
WString |
DomainControllerAddress
Pointer to a null-terminated WString that specifies the address of
the discovered domain controller.
|
int |
DomainControllerAddressType
Indicates the type of WString that is contained in the
DomainControllerAddress member.
|
WString |
DomainControllerName
Pointer to a null-terminated WString that specifies the computer name
of the discovered domain controller.
|
Guid.GUID |
DomainGuid
The GUID of the domain.
|
WString |
DomainName
Pointer to a null-terminated WString that specifies the name of the
domain.
|
int |
Flags
Contains a set of flags that describe the domain controller.
|
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
Constructor and Description |
---|
DOMAIN_CONTROLLER_INFO() |
DOMAIN_CONTROLLER_INFO(Pointer memory) |
Modifier and Type | Method and Description |
---|---|
protected List |
getFieldOrder()
Return this Structure's field names in their proper order.
|
allocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFieldList, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setFieldOrder, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, write, writeField, writeField, writeField
public WString DomainControllerName
public WString DomainControllerAddress
public int DomainControllerAddressType
public Guid.GUID DomainGuid
public WString DomainName
public WString DnsForestName
public int Flags
public WString DcSiteName
public WString ClientSiteName
public DOMAIN_CONTROLLER_INFO()
public DOMAIN_CONTROLLER_INFO(Pointer memory)
protected List getFieldOrder()
Structure
protected List getFieldOrder() {
return Arrays.asList(new String[] { ... });
}
IMPORTANT
When deriving from an existing Structure subclass, ensure that
you augment the list provided by the superclass, e.g.
protected List getFieldOrder() {
List fields = new ArrayList(super.getFieldOrder());
fields.addAll(Arrays.asList(new String[] { ... }));
return fields;
}
Field order must be explicitly indicated, since the
field order as returned by Class.getFields()
is not
guaranteed to be predictable.getFieldOrder
in class Structure