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