예제 #1
0
 public static bool IsDefined(Module element, Type attributeType) => MonoCustomAttrs.IsDefined(element, attributeType, true);
예제 #2
0
 public static bool IsDefined(Module element, Type attributeType, bool inherit) => MonoCustomAttrs.IsDefined(element, attributeType, inherit);
예제 #3
0
 public static Attribute[] GetCustomAttributes(ParameterInfo element, Type attributeType) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, true);
예제 #4
0
 public static Attribute[] GetCustomAttributes(ParameterInfo element, Type attributeType, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, inherit);
예제 #5
0
 public static Attribute[] GetCustomAttributes(Module element, Type attributeType) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, true);
예제 #6
0
 public static Attribute[] GetCustomAttributes(Module element, Type attributeType, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, attributeType, inherit);
예제 #7
0
 public static Attribute[] GetCustomAttributes(MemberInfo element, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, inherit);
예제 #8
0
파일: attribute.cs 프로젝트: zdpdev/mono
 static bool InternalIsDefined(PropertyInfo element, Type attributeType, bool inherit)
 {
     return(MonoCustomAttrs.IsDefined(element, attributeType, inherit));
 }
예제 #9
0
 public static Attribute[] GetCustomAttributes(Assembly element, bool inherit) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, inherit);
예제 #10
0
 public static Attribute[] GetCustomAttributes(MemberInfo element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
예제 #11
0
 public static Attribute[] GetCustomAttributes(Assembly element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
예제 #12
0
파일: MonoType.cs 프로젝트: mdae/MonoRT
 public override object[] GetCustomAttributes(bool inherit)
 {
     return(MonoCustomAttrs.GetCustomAttributes(this, inherit));
 }
예제 #13
0
파일: MonoType.cs 프로젝트: mdae/MonoRT
 public override bool IsDefined(Type attributeType, bool inherit)
 {
     return(MonoCustomAttrs.IsDefined(this, attributeType, inherit));
 }
예제 #14
0
 public static bool IsDefined(ParameterInfo element, Type attributeType) => MonoCustomAttrs.IsDefined(element, attributeType, true);
예제 #15
0
 public static Attribute[] GetCustomAttributes(Module element) => (Attribute[])MonoCustomAttrs.GetCustomAttributes(element, true);
예제 #16
0
 public static bool IsDefined(ParameterInfo element, Type attributeType, bool inherit) => MonoCustomAttrs.IsDefined(element, attributeType, inherit);
예제 #17
0
파일: attribute.cs 프로젝트: zdpdev/mono
 static Attribute[] InternalGetCustomAttributes(EventInfo element, Type type, bool inherit)
 {
     return((Attribute [])MonoCustomAttrs.GetCustomAttributes(element, type, inherit));
 }