PropertyOperationProcessWmiPropertyT Method |
Processes the WMI property.
Namespace:
Xcalibur.WMI.Framework
Assembly:
Xcalibur.WMI.Framework (in Xcalibur.WMI.Framework.dll) Version: 3.0.0.0 (3.0.1.0)
Syntax public static void ProcessWmiProperty<T>(
this T model,
Object wmiPropertyValue,
string propertyName
)
<ExtensionAttribute>
Public Shared Sub ProcessWmiProperty(Of T) (
model As T,
wmiPropertyValue As Object,
propertyName As String
)
public:
[ExtensionAttribute]
generic<typename T>
static void ProcessWmiProperty(
T model,
Object^ wmiPropertyValue,
String^ propertyName
)
[<ExtensionAttribute>]
static member ProcessWmiProperty :
model : 'T *
wmiPropertyValue : Object *
propertyName : string -> unit
Parameters
- model
- Type: T
The model. - wmiPropertyValue
- Type: SystemObject
The WMI property value. - propertyName
- Type: SystemString
Name of the property.
Type Parameters
- T
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also