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