33 writes to Name
System.Activities (16)
System\Activities\DelegateInArgument.cs (1)
26
this.
Name
= name;
System\Activities\DelegateOutArgument.cs (1)
27
this.
Name
= name;
System\Activities\Statements\CompensableActivity.cs (2)
207
DelegateInArgument<ValidationContext> validationContext = new DelegateInArgument<ValidationContext> {
Name
= "validationContext" };
208
DelegateInArgument<CompensableActivity> element = new DelegateInArgument<CompensableActivity> {
Name
= "element" };
System\Activities\Statements\Compensate.cs (2)
94
DelegateInArgument<Compensate> element = new DelegateInArgument<Compensate> {
Name
= "element" };
95
DelegateInArgument<ValidationContext> validationContext = new DelegateInArgument<ValidationContext> {
Name
= "validationContext" };
System\Activities\Statements\Confirm.cs (2)
102
DelegateInArgument<Confirm> element = new DelegateInArgument<Confirm> {
Name
= "element" };
103
DelegateInArgument<ValidationContext> validationContext = new DelegateInArgument<ValidationContext> {
Name
= "validationContext" };
System\Activities\Statements\Rethrow.cs (2)
16
DelegateInArgument<Rethrow> element = new DelegateInArgument<Rethrow>() {
Name
= "constraintArg" };
17
DelegateInArgument<ValidationContext> validationContext = new DelegateInArgument<ValidationContext>() {
Name
= "validationContext" };
System\Activities\Statements\TransactionScope.cs (6)
148
DelegateInArgument<TransactionScope> element = new DelegateInArgument<TransactionScope> {
Name
= "element" };
149
DelegateInArgument<ValidationContext> validationContext = new DelegateInArgument<ValidationContext> {
Name
= "validationContext" };
150
DelegateInArgument<Activity> parent = new DelegateInArgument<Activity> {
Name
= "parent" };
234
DelegateInArgument<TransactionScope> element = new DelegateInArgument<TransactionScope> {
Name
= "element" };
235
DelegateInArgument<ValidationContext> validationContext = new DelegateInArgument<ValidationContext> {
Name
= "validationContext" };
236
DelegateInArgument<Activity> child = new DelegateInArgument<Activity> {
Name
= "child" };
System.Activities.Core.Presentation (6)
System\Activities\Core\Presentation\Factories\GenericForEachWithBodyFactory.cs (1)
20
Name
= "item"
System\Activities\Core\Presentation\Factories\GenericParallelForEachWithBodyFactory.cs (1)
20
Name
= "item"
System\Activities\Core\Presentation\MorphHelpers.cs (3)
78
iterationDelegateArgument.
Name
= (string)originalActivityActionArgument.Properties[PropertyNames.NameProperty].Value.GetCurrentValue();
106
newActivityActionArgument.
Name
= (string)originalActivityFuncArgument.Properties[PropertyNames.NameProperty].Value.GetCurrentValue();
115
newActivityActionResult.
Name
= (string)originalActivityFuncResult.Properties[PropertyNames.NameProperty].Value.GetCurrentValue();
System\Activities\Core\Presentation\TryCatchDesigner.xaml.cs (1)
343
delegateArgument.
Name
= "exception";
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\ActivityDelegateUtilities.cs (1)
115
delegateArgument.
Name
= argument.Name;
System.ServiceModel.Activities (7)
System\ServiceModel\Activities\TransactedReceiveScope.cs (3)
93
DelegateInArgument<TransactedReceiveScope> element = new DelegateInArgument<TransactedReceiveScope> {
Name
= "element" };
94
DelegateInArgument<ValidationContext> validationContext = new DelegateInArgument<ValidationContext> {
Name
= "validationContext" };
95
DelegateInArgument<Activity> child = new DelegateInArgument<Activity> {
Name
= "child" };
System\ServiceModel\Activities\WorkflowService.cs (4)
788
DelegateInArgument<Receive> element = new DelegateInArgument<Receive> {
Name
= "ReceiveElement" };
789
DelegateInArgument<ValidationContext> validationContext = new DelegateInArgument<ValidationContext> {
Name
= "validationContext" };
821
DelegateInArgument<SendReply> element = new DelegateInArgument<SendReply> {
Name
= "ReceiveElement" };
822
DelegateInArgument<ValidationContext> validationContext = new DelegateInArgument<ValidationContext> {
Name
= "validationContext" };
System.Workflow.Runtime (3)
System\Activities\Statements\Interop.cs (3)
869
DelegateInArgument<Interop> element = new DelegateInArgument<Interop>() {
Name
= "element" };
870
DelegateInArgument<ValidationContext> validationContext = new DelegateInArgument<ValidationContext>() {
Name
= "validationContext" };
871
DelegateInArgument<Activity> parent = new DelegateInArgument<Activity>() {
Name
= "parent" };
14 references to Name
System.Activities (13)
System\Activities\Debugger\DebugInfo.cs (4)
242
Name = argument.
Name
,
285
if (delegateArgument != null && delegateArgument.
Name
!= null)
287
if (!existingNames.Contains(delegateArgument.
Name
)) // variable name already exists in current scope
290
existingNames.Add(delegateArgument.
Name
);
System\Activities\DelegateArgument.cs (2)
77
throw FxTrace.Exception.AsError(new InvalidOperationException(SR.DelegateArgumentMustBeReferenced(this.
Name
)));
91
ValidationError validationError = new ValidationError(SR.DelegateArgumentAlreadyInUseOnActivity(this.
Name
, parent.DisplayName, this.Owner.DisplayName), this.Owner);
System\Activities\DynamicUpdate\ActivityComparer.cs (2)
226
return (newBoundArgument.
Name
== oldBoundArgument.
Name
) &&
System\Activities\Expressions\DelegateArgumentReference.cs (2)
46
metadata.AddValidationError(SR.DelegateArgumentMustBeReferenced(this.DelegateArgument.
Name
));
51
metadata.AddValidationError(SR.DelegateArgumentNotVisible(this.DelegateArgument.
Name
));
System\Activities\Expressions\DelegateArgumentValue.cs (2)
46
metadata.AddValidationError(SR.DelegateArgumentMustBeReferenced(this.DelegateArgument.
Name
));
51
metadata.AddValidationError(SR.DelegateArgumentNotVisible(this.DelegateArgument.
Name
));
System\Activities\XamlIntegration\TextExpressionCompiler.cs (1)
349
AddMember(delegateArgument.BoundArgument.
Name
, delegateArgument.BoundArgument.Type, this.compiledDataContexts.Peek());
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Converters\ActivityActionSearchableStringConverter.cs (1)
17
results.Add(action.Argument.
Name
);