3 instantiations of PropertyData
System.Management (3)
System\Management\PropertySet.cs (3)
157array.SetValue(new PropertyData(parent, propertyName), index++); 292return new PropertyData(parent, propertyNames[index]); 353return new PropertyData(parent, propertyName);
27 references to PropertyData
System.Management (27)
System\Management\ManagementBaseObject.cs (3)
336/// <para>Gets or sets a collection of <see cref='System.Management.PropertyData'/> objects describing the properties of the 343/// <seealso cref='System.Management.PropertyData'/> 362/// <seealso cref='System.Management.PropertyData'/>
System\Management\PropertySet.cs (15)
172/// <para>Copies the <see cref='System.Management.PropertyDataCollection'/> to a specialized <see cref='System.Management.PropertyData'/> object 177public void CopyTo(PropertyData[] propertyArray, int index) 203/// <para>Represents the enumerator for <see cref='System.Management.PropertyData'/> 279/// <para>Gets the current <see cref='System.Management.PropertyData'/> in the <see cref='System.Management.PropertyDataCollection'/> enumeration.</para> 282/// The current <see cref='System.Management.PropertyData'/> 285public PropertyData Current 335/// <para> A <see cref='System.Management.PropertyData'/>, based on 346public virtual PropertyData this[string propertyName] 358/// <para>Removes a <see cref='System.Management.PropertyData'/> from the <see cref='System.Management.PropertyDataCollection'/>.</para> 397/// <para>Adds a new <see cref='System.Management.PropertyData'/> with the specified value.</para> 400/// <para>Adds a new <see cref='System.Management.PropertyData'/> with the specified value. The value cannot 421object wmiValue = PropertyData.MapValueToWmiValue(propertyValue, out isArray, out cimType); 439/// <para>Adds a new <see cref='System.Management.PropertyData'/> with the specified value and CIM type.</para> 467object wmiValue = PropertyData.MapValueToWmiValue(propertyValue, propertyType, isArray); 481/// <para>Adds a new <see cref='System.Management.PropertyData'/> with no assigned value.</para>
System\Management\WMIGenerator.cs (9)
686foreach (PropertyData prop in classobj.Properties) 1112foreach (PropertyData prop in classobj.SystemProperties) 1184PropertyData prop = classobj.Properties[PublicProperties.GetKey(i).ToString()]; 1571private string ProcessPropertyQualifiers(PropertyData prop, ref bool bRead, ref bool bWrite, ref bool bStatic, bool bDynamicClass, out bool nullable) 1790private bool GeneratePropertyHelperEnums(PropertyData prop, string strPropertyName, bool bNullable) 2802foreach (PropertyData prop in meth.OutParameters.Properties) 2901foreach (PropertyData prop in meth.InParameters.Properties) 2999foreach (PropertyData prop in meth.OutParameters.Properties) 6113private bool GetDateTimeType(PropertyData prop, ref CodeTypeReference codeType)