8 references to UserSuppliedServerName
System.DirectoryServices.AccountManagement (8)
System\DirectoryServices\AccountManagement\AD\ADDNLinkedAttrSet.cs (2)
1332string userSuppliedServername = _storeCtx.UserSuppliedServerName; 1352return "LDAP://" + _storeCtx.UserSuppliedServerName + "/" + escapedDn;
System\DirectoryServices\AccountManagement\AD\ADStoreCtx.cs (4)
1419dncContainer = new DirectoryEntry(@"LDAP://" + this.UserSuppliedServerName + @"/" + this.DefaultNamingContext, Credentials != null ? this.Credentials.UserName : null, Credentials != null ? this.Credentials.Password : null, this.AuthTypes); 1423fspWkDn = ADUtils.RetrieveWkDn(dncContainer, this.DefaultNamingContext, this.UserSuppliedServerName, Constants.GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER_BYTE); 1808string path = $"LDAP://{(string.IsNullOrEmpty(this.UserSuppliedServerName) ? this.DnsHostName : this.UserSuppliedServerName)}/{this.ContextBasePartitionDN}";
System\DirectoryServices\AccountManagement\AD\TokenGroupsSet.cs (2)
141string userSuppliedServername = _storeCtx.UserSuppliedServerName; 150return "LDAP://" + _storeCtx.UserSuppliedServerName + "/" + escapedDn;