9 references to Name
System.Workflow.Activities (9)
CorrelationValidator.cs (5)
476if (String.IsNullOrEmpty(parameterAttribute.Name) || parameterAttribute.Name.Trim().Length == 0) 483if (parameterAttrs.Contains(parameterAttribute.Name)) 485ValidationError error = new ValidationError(SR.GetString(CultureInfo.CurrentCulture, SR.Error_DuplicateCorrelationAttribute, typeof(CorrelationParameterAttribute).Name, parameterAttribute.Name, interfaceType.Name), ErrorNumbers.Error_DuplicateCorrelationAttribute); 490parameterAttrs.Add(parameterAttribute.Name);
LocalService\CorrelationResolver.cs (4)
332String location = paramAttribute.Name; 338CorrelationPropertyValue value = GetCorrelationProperty(parameters, paramAttribute.Name, location); 340throw new InvalidOperationException(SR.GetString(SR.Error_CorrelationParameterException, interfaceType.AssemblyQualifiedName, paramAttribute.Name, methodName)); 361correlationAliases.TryGetValue(paramAttribute.Name, out corrAlias);