Affecto.ActiveDirectoryService.ActiveDirectoryService.GetPrincipalInternal C# (CSharp) 메소드

GetPrincipalInternal() 보호된 메소드

protected GetPrincipalInternal ( System.Guid nativeGuid, ICollection additionalPropertyNames = null ) : Principal
nativeGuid System.Guid
additionalPropertyNames ICollection
리턴 Principal
        protected virtual Principal GetPrincipalInternal(Guid nativeGuid, ICollection<string> additionalPropertyNames = null)
        {
            using (DirectoryEntry domainEntry = GetDirectoryEntryByNativeGuid(nativeGuid))
            {
                return Principal.FromDirectoryEntry(domainEntry, additionalPropertyNames);
            }
        }