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