5 writes to IdentifierName
System.Activities.Presentation (5)
System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (2)
779IdentifierName = (string)argument.Properties[ArgumentNameProperty].ComputedValue 1471IdentifierName = newValue
System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (2)
1122IdentifierName = (string)modelItem.Properties[VariableNameProperty].ComputedValue 1171IdentifierName = newValue
System.Activities.Presentation\System\Activities\Presentation\View\VBIdentifierDesigner.xaml.cs (1)
145this.Identifier = new VBIdentifierName(this.checkAgainstXaml) { IdentifierName = newName };
12 references to IdentifierName
System.Activities.Presentation (12)
System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (5)
482duplicateIdentifier.ErrorMessage = string.Format(CultureInfo.CurrentUICulture, SR.DuplicateIdentifier, duplicateIdentifier.IdentifierName); 962string name = identifierName.IdentifierName; 1213if (!VBIdentifierName.IsValidXamlName(this.GetArgumentName().IdentifierName)) 1285string name = identifier.IdentifierName; 1463string oldValue = this.identifierName.IdentifierName;
System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (5)
170duplicateIdentifier.ErrorMessage = string.Format(CultureInfo.CurrentUICulture, SR.DuplicateIdentifier, duplicateIdentifier.IdentifierName); 206return this.variableWrapperCollection.GetUniqueName<DesignTimeVariable>(VariableDesigner.DefaultVariableName, wrapper => wrapper.GetVariableName().IdentifierName); 1136string name = this.identifierName.IdentifierName; 1163string oldValue = this.identifierName.IdentifierName; 1405newName = identifier.IdentifierName;
System.Activities.Presentation\System\Activities\Presentation\View\VBIdentifierDesigner.xaml.cs (1)
176this.NameString = this.Identifier.IdentifierName;
System.Activities.Presentation\System\Activities\Presentation\View\VBIdentifierName.cs (1)
124string trimedName = this.IdentifierName;