2 instantiations of ResultPropertyValueCollection
System.DirectoryServices (2)
System\DirectoryServices\ResultPropertyCollection.cs (1)
32return new ResultPropertyValueCollection(Array.Empty<object>());
System\DirectoryServices\SearchResultCollection.cs (1)
321entry.Properties.Add(Marshal.PtrToStringUni(pszColumnName)!, new ResultPropertyValueCollection(values));
9 references to ResultPropertyValueCollection
System.DirectoryServices (7)
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchemaProperty.cs (1)
1109ResultPropertyValueCollection? propertyValues = null;
System\DirectoryServices\ActiveDirectory\ConfigSet.cs (1)
708ResultPropertyValueCollection replicaLocations = res.Properties[PropertyManager.MsDSNCReplicaLocations];
System\DirectoryServices\ActiveDirectory\PropertyManager.cs (1)
148ResultPropertyValueCollection? propertyValues = null;
System\DirectoryServices\ResultPropertyCollection.cs (4)
21public ResultPropertyValueCollection this[string name] 28return (ResultPropertyValueCollection)InnerHashtable[objectName]!; 41internal void Add(string name, ResultPropertyValueCollection value) 52public void CopyTo(ResultPropertyValueCollection[] array, int index)
System.DirectoryServices.AccountManagement (2)
System\DirectoryServices\AccountManagement\AD\DSPropertyCollection.cs (2)
47private readonly ResultPropertyValueCollection _rc; 51internal dSPropertyValueCollection(ResultPropertyValueCollection rc) { _rc = rc; }