1 write to authTypes
System.DirectoryServices.AccountManagement (1)
System\DirectoryServices\AccountManagement\AD\ADStoreCtx.cs (1)
297
this.
authTypes
= SDSUtils.MapOptionsToAuthTypes(options);
11 references to authTypes
System.DirectoryServices.AccountManagement (11)
System\DirectoryServices\AccountManagement\AD\ADAMStoreCtx.cs (2)
267
using (DirectoryEntry deRoot = new DirectoryEntry("LDAP://" + userSuppliedServerName + "/rootDSE", credentials?.UserName, credentials?.Password,
authTypes
))
278
using (DirectoryEntry deSCN = new DirectoryEntry("LDAP://" + userSuppliedServerName + "/" + SchemaNamingContext, credentials?.UserName, credentials?.Password,
authTypes
))
System\DirectoryServices\AccountManagement\AD\ADStoreCtx.cs (8)
35
protected internal AuthenticationTypes AuthTypes { get { return this.
authTypes
; } }
373
this.
authTypes
,
674
this.
authTypes
979
SDSUtils.WriteAttribute(de.Path, attribute, value, this.credentials, this.
authTypes
);
988
SDSUtils.WriteAttribute<T>(de.Path, attribute, value, this.credentials, this.
authTypes
);
1428
fspContainer = new DirectoryEntry(fspWkDn, Credentials != null ? this.credentials.UserName : null, Credentials != null ? this.credentials.Password : null, this.
authTypes
);
1810
defaultNCDirEntry = SDSUtils.BuildDirectoryEntry(path, this.credentials, this.
authTypes
);
2519
this.
authTypes
);
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_LoadStore.cs (1)
282
dcEntry = SDSUtils.BuildDirectoryEntry("LDAP://" + dnsDomainName + "/" + GetEscapedDN(distinguishedName), this.Credentials, this.
authTypes
);