7 writes to AuthenticationType
System.DirectoryServices (6)
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchema.cs (2)
421directoryEntry.AuthenticationType = Utils.DefaultAuthType; 475directoryEntry.AuthenticationType = Utils.DefaultAuthType;
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchemaClass.cs (2)
1312de.AuthenticationType = Utils.DefaultAuthType; 1384de.AuthenticationType = Utils.DefaultAuthType;
System\DirectoryServices\ActiveDirectory\DomainController.cs (1)
1304de.AuthenticationType = Utils.DefaultAuthType | AuthenticationTypes.ServerBind;
System\DirectoryServices\ActiveDirectory\GlobalCatalog.cs (1)
428de.AuthenticationType = Utils.DefaultAuthType | AuthenticationTypes.ServerBind;
System.DirectoryServices.AccountManagement (1)
System\DirectoryServices\AccountManagement\AD\SDSUtils.cs (1)
391de.AuthenticationType = authTypes;
10 references to AuthenticationType
System.DirectoryServices (10)
System\DirectoryServices\DirectoryEntries.cs (3)
48DirectoryEntry entry = new DirectoryEntry(newChild, _container.UsePropertyCache, _container.GetUsername(), _container.GetPassword(), _container.AuthenticationType); 78return new DirectoryEntry(o, _container.UsePropertyCache, _container.GetUsername(), _container.GetPassword(), _container.AuthenticationType); 128return _currentEntry ??= new DirectoryEntry(_enumVariant.GetValue(), _container.UsePropertyCache, _container.GetUsername(), _container.GetPassword(), _container.AuthenticationType);
System\DirectoryServices\DirectoryEntry.cs (5)
297return new DirectoryEntry(_adsObject.Parent, UsePropertyCache, GetUsername(), GetPassword(), AuthenticationType); 380return new DirectoryEntry(_adsObject.Schema, UsePropertyCache, GetUsername(), GetPassword(), AuthenticationType); 547DirectoryEntry newEntry = new DirectoryEntry(this.Path, this.UsePropertyCache, this.GetUsername(), this.GetPassword(), this.AuthenticationType); 673return new DirectoryEntry(copy, newParent.UsePropertyCache, GetUsername(), GetPassword(), AuthenticationType); 799return new DirectoryEntry(result, UsePropertyCache, GetUsername(), GetPassword(), AuthenticationType);
System\DirectoryServices\SearchResultCollection.cs (2)
55_rootEntry.AuthenticationType); 196return new ResultsEnumerator(this, _rootEntry.GetUsername(), _rootEntry.GetPassword(), _rootEntry.AuthenticationType);