11 references to LoadCustomAttributes
System.Workflow.ComponentModel (11)
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (1)
361this.attributes = Helper.LoadCustomAttributes(attributeDecls, this);
AuthoringOM\Compiler\TypeSystem\EventInfo.cs (2)
139this.attributes = Helper.LoadCustomAttributes(this.codeDomEvent.CustomAttributes, this.DeclaringType as DesignTimeType); 150this.attributes = Helper.LoadCustomAttributes(this.codeDomEvent.CustomAttributes, this.DeclaringType as DesignTimeType);
AuthoringOM\Compiler\TypeSystem\FieldInfo.cs (2)
115this.attributes = Helper.LoadCustomAttributes(this.codeDomField.CustomAttributes, this.DeclaringType as DesignTimeType); 126this.attributes = Helper.LoadCustomAttributes(this.codeDomField.CustomAttributes, this.DeclaringType as DesignTimeType);
AuthoringOM\Compiler\TypeSystem\MethodInfo.cs (4)
122this.attributes = Helper.LoadCustomAttributes(this.codeConstructor.CustomAttributes, this.DeclaringType as DesignTimeType); 132this.attributes = Helper.LoadCustomAttributes(this.codeConstructor.CustomAttributes, this.DeclaringType as DesignTimeType); 286this.attributes = Helper.LoadCustomAttributes(this.methodInfo.CustomAttributes, this.DeclaringType as DesignTimeType); 296this.attributes = Helper.LoadCustomAttributes(this.methodInfo.CustomAttributes, this.DeclaringType as DesignTimeType);
AuthoringOM\Compiler\TypeSystem\PropertyInfo.cs (2)
192this.attributes = Helper.LoadCustomAttributes(this.property.CustomAttributes, this.DeclaringType as DesignTimeType); 203this.attributes = Helper.LoadCustomAttributes(this.property.CustomAttributes, this.DeclaringType as DesignTimeType);