PSObject Event
Fires when a new object is parsed on the server output.
Syntax
typedef void __fastcall (__closure *TiphPSClientPSObjectEvent)(System::TObject* Sender, TiphPSClientPSObjectEventParams *e);__property TiphPSClientPSObjectEvent OnPSObject = {read=FOnPSObject, write=FOnPSObject};
typedef struct {
String BaseType;
String Value;
} TiphPSClientPSObjectEventParams;
Remarks
The PSObject event is fired whenever a PowerShell object is parsed completely from the pipeline output returned by the server.
BaseType contains the primary base type of the output object and Value will contain the string representation of the object value for simple types (like a string or a number).