09c2a24222
Refactor to target specific Domain Controllers, with failover.
19 lines
405 B
C#
19 lines
405 B
C#
|
|
using System.Security.Principal;
|
|
namespace Disco.Services.Interop.ActiveDirectory
|
|
{
|
|
public interface IADObject
|
|
{
|
|
ADDomain Domain { get; }
|
|
|
|
string DistinguishedName { get; }
|
|
SecurityIdentifier SecurityIdentifier { get; }
|
|
|
|
string Id { get; }
|
|
string SamAccountName { get; }
|
|
|
|
string Name { get; }
|
|
string DisplayName { get; }
|
|
}
|
|
}
|