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