You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've modified OnGetArguments in my personal environment to accept more parameter types. I've added the following:
// BinaryExpressionHelper.cspublicstaticvoidOnGetArguments<TLeft,TRight>(CodeActivityMetadata,InArgument<TLeft>,InArgument<TRight>);publicstaticvoidOnGetArguments<TLeft,TRight>(CodeActivityMetadata,InOutArgument<TLeft>,InArgument<TRight>);publicstaticvoidOnGetArguments<TLeft,TRight>(CodeActiviytMetadata,InArgument<TLeft,InOutArgument<TRight>);publicstaticvoidOnGetArguments<TLeft,TRight>(CodeActiviytMetadata,InOutArgument<TLeft,InOutArgument<TRight>);// All of these forward to this method:internalstaticvoidOnGetArgumentsBase<TLeft,TRight>(CodeActivityMetadata,Argumentleft,ArgumentDirectionleftDirection,Argumentright,ArgumentDirectionrightDirection);
The text was updated successfully, but these errors were encountered:
I've modified OnGetArguments in my personal environment to accept more parameter types. I've added the following:
The text was updated successfully, but these errors were encountered: