mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2024-12-14 10:25:51 +00:00
27 lines
762 B
C#
27 lines
762 B
C#
namespace DSInternals.DataStore
|
|
{
|
|
using System;
|
|
|
|
public interface IDomainController
|
|
{
|
|
DateTime? BackupExpiration { get; }
|
|
long? BackupUsn { get; }
|
|
string Domain { get; }
|
|
Guid DsaGuid { get; }
|
|
int? Epoch { get; }
|
|
long HighestCommittedUsn { get; }
|
|
Guid InvocationId { get; }
|
|
bool IsGlobalCatalog { get; }
|
|
string Name { get; }
|
|
int NTDSSettingsDNT { get; }
|
|
DomainControllerOptions Options { get; }
|
|
string OSVersion { get; }
|
|
uint? OSVersionMajor { get; }
|
|
uint? OSVersionMinor { get; }
|
|
string SiteName { get; }
|
|
DatabaseState State { get; }
|
|
long? UsnAtIfm { get; }
|
|
string[] WritablePartitions { get; }
|
|
}
|
|
}
|