Access PSObject property by name in C#
Try something like this:
psobjectvariable.Properties["transactionName"].Value
Here's something that I didn't expect to work, but it did.
dynamic x = psobjectvariable;
Console.Write(x.transactionName);
Try something like this:
psobjectvariable.Properties["transactionName"].Value
Here's something that I didn't expect to work, but it did.
dynamic x = psobjectvariable;
Console.Write(x.transactionName);