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