3 instantiations of PropertyData
System.Management (3)
System\Management\PropertySet.cs (3)
157
array.SetValue(new
PropertyData
(parent, propertyName), index++);
292
return new
PropertyData
(parent, propertyNames[index]);
353
return 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
177
public 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
'/>
285
public
PropertyData
Current
335
/// <para> A <see cref='System.Management.
PropertyData
'/>, based on
346
public 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
421
object 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>
467
object 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)
686
foreach (
PropertyData
prop in classobj.Properties)
1112
foreach (
PropertyData
prop in classobj.SystemProperties)
1184
PropertyData
prop = classobj.Properties[PublicProperties.GetKey(i).ToString()];
1571
private string ProcessPropertyQualifiers(
PropertyData
prop, ref bool bRead, ref bool bWrite, ref bool bStatic, bool bDynamicClass, out bool nullable)
1790
private bool GeneratePropertyHelperEnums(
PropertyData
prop, string strPropertyName, bool bNullable)
2802
foreach (
PropertyData
prop in meth.OutParameters.Properties)
2901
foreach (
PropertyData
prop in meth.InParameters.Properties)
2999
foreach (
PropertyData
prop in meth.OutParameters.Properties)
6113
private bool GetDateTimeType(
PropertyData
prop, ref CodeTypeReference codeType)