3 instantiations of PropertyData
System.Management (3)
propertyset.cs (3)
152 array.SetValue(new PropertyData(parent, propertyName), index++); 286 return new PropertyData(parent, propertyNames[index]); 346 return new PropertyData(parent, propertyName);
32 references to PropertyData
System.Management (32)
Instrumentation\SchemaMapping.cs (3)
482 PropertyData prop = newClass.Properties[propName]; 576 PropertyData prop = props[propName]; 582 PropertyData prop = props[propName];
Instrumentation\SchemaRegistration.cs (2)
651PropertyData prop = props["Name"]; 667PropertyData prop = props["NamespaceName"];
managementbaseobject.cs (3)
352/// <para>Gets or sets a collection of <see cref='System.Management.PropertyData'/> objects describing the properties of the 359/// <seealso cref='System.Management.PropertyData'/> 381/// <seealso cref='System.Management.PropertyData'/>
propertyset.cs (15)
167 /// <para>Copies the <see cref='System.Management.PropertyDataCollection'/> to a specialized <see cref='System.Management.PropertyData'/> object 172 public void CopyTo(PropertyData[] propertyArray, Int32 index) 198 /// <para>Represents the enumerator for <see cref='System.Management.PropertyData'/> 274 /// <para>Gets the current <see cref='System.Management.PropertyData'/> in the <see cref='System.Management.PropertyDataCollection'/> enumeration.</para> 277 /// The current <see cref='System.Management.PropertyData'/> 280 public PropertyData Current 329 /// <para> A <see cref='System.Management.PropertyData'/>, based on 340 public virtual PropertyData this[string propertyName] 351 /// <para>Removes a <see cref='System.Management.PropertyData'/> from the <see cref='System.Management.PropertyDataCollection'/>.</para> 390 /// <para>Adds a new <see cref='System.Management.PropertyData'/> with the specified value.</para> 393 /// <para>Adds a new <see cref='System.Management.PropertyData'/> with the specified value. The value cannot 414 object wmiValue = PropertyData.MapValueToWmiValue(propertyValue, out isArray, out cimType); 432 /// <para>Adds a new <see cref='System.Management.PropertyData'/> with the specified value and CIM type.</para> 460 object wmiValue = PropertyData.MapValueToWmiValue(propertyValue, propertyType, isArray); 474 /// <para>Adds a new <see cref='System.Management.PropertyData'/> with no assigned value.</para>
WmiGenerator.cs (9)
721foreach(PropertyData prop in classobj.Properties) 1153foreach (PropertyData prop in classobj.SystemProperties) 1225PropertyData prop = classobj.Properties[PublicProperties.GetKey(i).ToString()]; 1619string ProcessPropertyQualifiers(PropertyData prop,ref bool bRead, ref bool bWrite, ref bool bStatic,bool bDynamicClass,out bool nullable) 1840bool GeneratePropertyHelperEnums(PropertyData prop, string strPropertyName, bool bNullable) 2855foreach (PropertyData prop in meth.OutParameters.Properties) 2954foreach (PropertyData prop in meth.InParameters.Properties) 3053foreach (PropertyData prop in meth.OutParameters.Properties) 6226private bool GetDateTimeType(PropertyData prop,ref CodeTypeReference codeType )