PSProperty Type
A property in a PowerShell object.
Remarks
This type describes a specific property of a PowerShell object returned after pipeline execution.
A property has a name, a data type, a value and a boolean property indicating if it's null.
Fields
DataType String |
The type of this property Each property has a unique name, a value, a type and a boolean value indicating if it's null. |
IsNull boolean |
True, if the property has a null value Each property has a unique name, a value, a type and a boolean value indicating if it's null. |
Name String |
The name of a property Each property has a unique name, a value, a type and a boolean value indicating if it's null. |
Value String |
The value of this property Each property has a unique name, a value, a type and a boolean value indicating if it's null. |
Constructors
public PSProperty();
Creates a PSProperty instance whose properties can be set.