25 references to InArgument
System.Activities (8)
System\Activities\Statements\Compensate.cs (2)
118Condition = new InArgument<bool>((env) => element.Get(env).Target != null), 153Value = new InArgument<int>(env => index.Get(env) + 1)
System\Activities\Statements\Confirm.cs (2)
126Condition = new InArgument<bool>((env) => element.Get(env).Target != null), 162Value = new InArgument<int>(env => index.Get(env) + 1)
System\Activities\Statements\If.cs (1)
31this.Condition = new InArgument<bool>(condition);
System\Activities\Statements\Switch.cs (1)
34this.Expression = new InArgument<T>(expression);
System\Activities\Statements\TransactionScope.cs (2)
183Right = new InArgument<Type>(context => typeof(TransactionScope)) 271Right = new InArgument<Type>(context => typeof(CompensableActivity))
System.Activities.Core.Presentation (8)
System\ServiceModel\Activities\Presentation\ReceiveReplyValidationFeature.cs (4)
57Condition = new InArgument<bool>(ctx => receiveReply.Get(ctx).Request != null), 73Condition = new InArgument<bool>(ctx => activityInTree.Get(ctx) == receiveReply.Get(ctx).Request), 84Assertion = new InArgument<bool>(ctx => requestInTree.Get(ctx)), 86Message = new InArgument<string>(ctx => string.Format(CultureInfo.CurrentCulture, System.Activities.Core.Presentation.SR.UnrootedRequestInReceiveReply, receiveReply.Get(ctx).DisplayName))
System\ServiceModel\Activities\Presentation\SendReplyValidationFeature.cs (4)
57Condition = new InArgument<bool>(ctx => sendReply.Get(ctx).Request != null), 73Condition = new InArgument<bool>(ctx => activityInTree.Get(ctx) == sendReply.Get(ctx).Request), 84Assertion = new InArgument<bool>(ctx => requestInTree.Get(ctx)), 86Message = new InArgument<string>(ctx => string.Format(CultureInfo.CurrentCulture, System.Activities.Core.Presentation.SR.UnrootedRequestInSendReply, sendReply.Get(ctx).DisplayName))
System.ServiceModel.Activities (6)
System\ServiceModel\Activities\InternalReceiveMessage.cs (1)
56this.CorrelatesWith = new InArgument<CorrelationHandle>(context => (CorrelationHandle)null);
System\ServiceModel\Activities\Send.cs (1)
347result.EndpointAddress = new InArgument<Uri>(context => ((InArgument<Uri>)this.EndpointAddress).Get(context));
System\ServiceModel\Activities\SendMessageContent.cs (2)
130internalSendMessage.Message = new InArgument<Message>(context => ((InArgument<Message>)this.Message).Get(context)); 147internalSendMessage.Message = new InArgument<Message>(context => ((InArgument<Message>)this.Message).Get(context));
System\ServiceModel\Activities\TransactedReceiveScope.cs (2)
133Right = new InArgument<Type>(context => typeof(TransactionScope)) 162Right = new InArgument<Type>(context => typeof(CompensableActivity))
System.Workflow.Runtime (3)
System\Activities\Statements\Interop.cs (3)
887Condition = new InArgument<bool>(env => element.Get(env).hasValidBody), 935Right = new InArgument<Type>(context => typeof(System.Activities.Statements.TransactionScope)) 939Left = new InArgument<string>(env => parent.Get(env).GetType().FullName),