6 references to AttributeInfo
System.Workflow.ComponentModel (6)
AuthoringOM\Compiler\TypeSystem\AttributeInfo.cs (1)
31
return new AttributeInfoAttribute(new
AttributeInfo
(attributeType, argumentNames, argumentValues));
AuthoringOM\Design\CustomActivityDesigner.cs (5)
651
attributeList.Add(new
AttributeInfo
(typeof(CategoryAttribute), new string[] { }, new object[] { new CodePrimitiveExpression(property.Category) }));
654
attributeList.Add(new
AttributeInfo
(typeof(DescriptionAttribute), new string[] { }, new object[] { new CodePrimitiveExpression(property.Description) }));
657
attributeList.Add(new
AttributeInfo
(typeof(EditorAttribute), new string[] { }, new object[] { new CodeTypeOfExpression(property.UITypeEditor), new CodeTypeOfExpression(typeof(UITypeEditor)) }));
659
attributeList.Add(new
AttributeInfo
(typeof(BrowsableAttribute), new string[] { }, new object[] { new CodePrimitiveExpression(property.Browseable) }));
660
attributeList.Add(new
AttributeInfo
(typeof(DesignerSerializationVisibilityAttribute), new string[] { }, new object[] { new CodeSnippetExpression(typeof(DesignerSerializationVisibility).Name + "." + property.DesignerSerializationVisibility.ToString()) }));