Response in web resource, Object reference not set to an instance of an object. issue is with Out argument. tried
Declared :
[Output("SessionId")]
public OutArgument<string> SessionId { get; set; }
Tried with both, issue not resolved
SessionId.Set(context, SessionIdLocal); and
SessionId = new OutArgument<string>(new Variable<string>() { Default = SessionIdLocal });
Please posts any reference document that implements OutArgument for workflow action.
Thanks.