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