3 instantiations of CustomAttributeDataImpl
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (3)
Debugger\MemberInfo\FieldInfoImpl.cs (1)
89
return this.Field.GetCustomAttributesData().Select(a => new
CustomAttributeDataImpl
(a)).ToArray();
Debugger\MemberInfo\PropertyInfoImpl.cs (1)
107
return this.Property.GetCustomAttributesData().Select(a => new
CustomAttributeDataImpl
(a)).ToArray();
Debugger\MemberInfo\TypeImpl.cs (1)
148
return Type.GetCustomAttributesData().Select(a => new
CustomAttributeDataImpl
(a)).ToArray();
1 reference to CustomAttributeDataImpl
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\Engine\DkmClrType.cs (1)
239
var data = ((
CustomAttributeDataImpl
)attribute).CustomAttributeData;