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
[VB.NET]
Public PSProperty()
[C#]
public PSProperty();
Creates a PSProperty instance whose properties can be set.