DsGetDC.DOMAIN_CONTROLLER_INFO.ByReference
public static class DsGetDC.DOMAIN_CONTROLLER_INFO extends Structure
Modifier and Type | Class | Description |
---|---|---|
static class |
DsGetDC.DOMAIN_CONTROLLER_INFO.ByReference |
Structure.ByValue, Structure.StructField
Modifier and Type | Field | Description |
---|---|---|
String |
ClientSiteName |
Pointer to a null-terminated string that specifies the name of the
site that the computer belongs to.
|
String |
DcSiteName |
Pointer to a null-terminated string that specifies the name of the
site where the domain controller is located.
|
String |
DnsForestName |
Pointer to a null-terminated string that specifies the name of the
domain at the root of the DS tree.
|
String |
DomainControllerAddress |
Pointer to a null-terminated string that specifies the address of
the discovered domain controller.
|
int |
DomainControllerAddressType |
Indicates the type of string that is contained in the
DomainControllerAddress member.
|
String |
DomainControllerName |
Pointer to a null-terminated string that specifies the computer name
of the discovered domain controller.
|
Guid.GUID |
DomainGuid |
The GUID of the domain.
|
String |
DomainName |
Pointer to a null-terminated string that specifies the name of the
domain.
|
static List<String> |
FIELDS |
|
int |
Flags |
Contains a set of flags that describe the domain controller.
|
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
Constructor | Description |
---|---|
DOMAIN_CONTROLLER_INFO() |
|
DOMAIN_CONTROLLER_INFO(Pointer memory) |
Modifier and Type | Method | Description |
---|---|---|
protected List<String> |
getFieldOrder() |
Return this Structure's field names in their proper order.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
allocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, 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 String DomainControllerName
public String DomainControllerAddress
public int DomainControllerAddressType
public Guid.GUID DomainGuid
public String DomainName
public String DnsForestName
public int Flags
public String DcSiteName
public String ClientSiteName
public DOMAIN_CONTROLLER_INFO()
public DOMAIN_CONTROLLER_INFO(Pointer memory)
protected List<String> 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