1 instantiation of MiniCustomAttributeInfo
System.AddIn (1)
System\Addin\MiniReflection\TypeInfo.cs (1)
1035return new MiniCustomAttributeInfo(caReflectedType.Name, fixedArgs.ToArray(), namedArgs.ToArray());
9 references to MiniCustomAttributeInfo
System.AddIn (9)
System\Addin\Hosting\Store\AddIn.cs (2)
156MiniCustomAttributeInfo[] attributes = type.GetCustomAttributeInfos(addInAttributeType); 159MiniCustomAttributeInfo addInAttribute = attributes[0];
System\Addin\Hosting\Store\PipelineComponent.cs (2)
104MiniCustomAttributeInfo[] cas = typeInfo.GetCustomAttributeInfos(qualificationDataAttribute); 108foreach (MiniCustomAttributeInfo ca in cas)
System\Addin\MiniReflection\TypeInfo.cs (5)
947internal MiniCustomAttributeInfo[] GetCustomAttributeInfos(Type caReflectedType) 949List<MiniCustomAttributeInfo> result = new List<MiniCustomAttributeInfo>(); 989MiniCustomAttributeInfo customAttributeInfo = ParseCustomAttribute(caBlob, caReflectedType); 997private static MiniCustomAttributeInfo ParseCustomAttribute(byte[] caBlob, Type caReflectedType)