24 references to Cn
System.DirectoryServices (24)
System\DirectoryServices\ActiveDirectory\ActiveDirectoryInterSiteTransport.cs (2)
244string cn = (string)PropertyManager.GetSearchResultPropertyValue(result, PropertyManager.Cn)!; 292string cn = (string)PropertyManager.GetSearchResultPropertyValue(result, PropertyManager.Cn)!;
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchema.cs (4)
408propertiesToLoad[1] = PropertyManager.Cn; 434string commonName = (string)PropertyManager.GetSearchResultPropertyValue(res, PropertyManager.Cn)!; 462propertiesToLoad[1] = PropertyManager.Cn; 488string commonName = (string)PropertyManager.GetSearchResultPropertyValue(res, PropertyManager.Cn)!;
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchemaClass.cs (4)
456_commonName ??= (string)GetValueFromCache(PropertyManager.Cn, true)!; 467SetProperty(PropertyManager.Cn, value); 1151str.Append(PropertyManager.Cn); 1181propertyNamesWithoutRangeRetrieval.Add(PropertyManager.Cn);
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchemaProperty.cs (5)
494_commonName ??= (string)GetValueFromCache(PropertyManager.Cn, true)!; 508SetProperty(PropertyManager.Cn, value); 1190str.Append(PropertyManager.Cn); 1219propertiesToLoad[1] = PropertyManager.Cn; 1236propertiesToLoad[1] = PropertyManager.Cn;
System\DirectoryServices\ActiveDirectory\ActiveDirectorySite.cs (5)
957if (Utils.Compare((string)PropertyManager.GetPropertyValue(context, cachedEntry, PropertyManager.Cn)!, fromSite) != 0) 1027if (Utils.Compare(otherSite, (string)PropertyManager.GetPropertyValue(context, cachedEntry, PropertyManager.Cn)!) != 0) 1160subnetName = (string)PropertyManager.GetSearchResultPropertyValue(result, PropertyManager.Cn)!; 1205string linkName = (string)PropertyManager.GetSearchResultPropertyValue(result, PropertyManager.Cn)!; 1272string cn = (string)PropertyManager.GetSearchResultPropertyValue(result, PropertyManager.Cn)!;
System\DirectoryServices\ActiveDirectory\ADAMInstance.cs (1)
675cachedSiteName = (string)PropertyManager.GetPropertyValue(context, siteEntry, PropertyManager.Cn)!;
System\DirectoryServices\ActiveDirectory\ConfigSet.cs (2)
633propertiesToLoad[0] = PropertyManager.Cn; 645sites.Add(new ActiveDirectorySite(_context, (string)PropertyManager.GetSearchResultPropertyValue(res, PropertyManager.Cn)!, true));
System\DirectoryServices\ActiveDirectory\DirectoryServer.cs (1)
781ReplicationConnection con = new ReplicationConnection(newContext, r.GetDirectoryEntry(), (string)PropertyManager.GetSearchResultPropertyValue(r, PropertyManager.Cn)!);