5 writes to userSuppliedServerName
System.DirectoryServices.AccountManagement (5)
System\DirectoryServices\AccountManagement\AD\ADAMStoreCtx.cs (3)
26this.userSuppliedServerName = serverName; 137this.userSuppliedServerName = pathName.Retrieve(9 /*ADS_FORMAT_SERVER */); 146this.userSuppliedServerName = "";
System\DirectoryServices\AccountManagement\AD\ADStoreCtx.cs (2)
2545this.userSuppliedServerName = pathName.Retrieve(9 /*ADS_FORMAT_SERVER */); 2554this.userSuppliedServerName = "";
12 references to userSuppliedServerName
System.DirectoryServices.AccountManagement (12)
System\DirectoryServices\AccountManagement\AD\ADAMStoreCtx.cs (8)
105this.domainFlatName = userSuppliedServerName; 106this.forestDnsName = userSuppliedServerName; 107this.domainDnsName = userSuppliedServerName; 113using (DirectoryEntry rootDse = new DirectoryEntry("LDAP://" + this.userSuppliedServerName + "/rootDse", "", "", AuthenticationTypes.Anonymous)) 138GlobalDebug.WriteLineIf(GlobalDebug.Info, "ADStoreCtx", "LoadComputerInfo: using user-supplied name {0}", this.userSuppliedServerName); 267using (DirectoryEntry deRoot = new DirectoryEntry("LDAP://" + userSuppliedServerName + "/rootDSE", credentials?.UserName, credentials?.Password, authTypes)) 271GlobalDebug.WriteLineIf(GlobalDebug.Error, "ADAMStoreCtx", "PopulatAuxObjectList Unable to read schemaNamingContrext from " + userSuppliedServerName); 278using (DirectoryEntry deSCN = new DirectoryEntry("LDAP://" + userSuppliedServerName + "/" + SchemaNamingContext, credentials?.UserName, credentials?.Password, authTypes))
System\DirectoryServices\AccountManagement\AD\ADStoreCtx.cs (4)
2348if (this.userSuppliedServerName == null) 2352if (this.userSuppliedServerName == null) 2357return this.userSuppliedServerName; 2546GlobalDebug.WriteLineIf(GlobalDebug.Info, "ADStoreCtx", "LoadComputerInfo: using user-supplied name {0}", this.userSuppliedServerName);