Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2011-09-30 11:26:56 +0400
committerjfrijters <jfrijters>2011-09-30 11:26:56 +0400
commit5d17f721cbc118af71376a842cd87b8f769d32a2 (patch)
tree33519b760a12d11dfb80f52a6d989e465600b803 /reflect/Type.cs
parent5b802b294e3bff1f932483189e1003975b54232e (diff)
Added API extension to query custom attributes on interfaceimpl records.
Diffstat (limited to 'reflect/Type.cs')
-rw-r--r--reflect/Type.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/reflect/Type.cs b/reflect/Type.cs
index d4870d92..22b76aba 100644
--- a/reflect/Type.cs
+++ b/reflect/Type.cs
@@ -1722,6 +1722,11 @@ namespace IKVM.Reflection
typeFlags |= TypeFlags.EnumOrValueType;
}
}
+
+ internal virtual IList<CustomAttributeData> GetInterfaceImplCustomAttributes(Type interfaceType, Type attributeType)
+ {
+ throw new NotSupportedException();
+ }
}
abstract class ElementHolderType : Type