13 references to ArgumentValues
System.Workflow.ComponentModel (13)
AuthoringOM\Compiler\TypeSystem\AttributeInfo.cs (6)
136if (argumentIndex >= this.ArgumentValues.Count || argumentIndex < 0) 146string returnValue = this.ArgumentValues[argumentIndex] as string; 180foreach (string enumValue in (this.ArgumentValues[argumentIndex] as string).Split(new string[] { language == SupportedLanguages.CSharp ? "|" : "Or" }, StringSplitOptions.RemoveEmptyEntries)) 198return System.Convert.ToBoolean(this.ArgumentValues[argumentIndex], CultureInfo.InvariantCulture); 203if (this.ArgumentValues[argumentIndex] is CodeTypeOfExpression) 204typeName = DesignTimeType.GetTypeNameFromCodeTypeReference((this.ArgumentValues[argumentIndex] as CodeTypeOfExpression).Type, null);
AuthoringOM\Design\CustomActivityDesigner.cs (5)
468if (attributeInfo.AttributeType == typeof(BrowsableAttribute) && attributeInfo.ArgumentValues.Count > 0) 472else if (attributeInfo.AttributeType == typeof(CategoryAttribute) && attributeInfo.ArgumentValues.Count > 0) 476else if (attributeInfo.AttributeType == typeof(DescriptionAttribute) && attributeInfo.ArgumentValues.Count > 0) 480else if (attributeInfo.AttributeType == typeof(DesignerSerializationVisibilityAttribute) && attributeInfo.ArgumentValues.Count > 0) 484else if (attributeInfo.AttributeType == typeof(EditorAttribute) && attributeInfo.ArgumentValues.Count > 1)
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (1)
751ReadOnlyCollection<object> argumentValues = attributeInfoAttribute.AttributeInfo.ArgumentValues;
AuthoringOM\Design\PropertyDescriptors.cs (1)
460if (attributeInfoAttribute != null && attributeInfoAttribute.AttributeInfo.ArgumentValues.Count > 0)