Esempio n. 1
0
 public override Type[] GetInterfaces()
 {
     return(BaseTypeCore.GetInterfaces());
 }
Esempio n. 2
0
 public override MethodInfo[] GetMethods(BindingFlags bindingAttr)
 {
     return(BaseTypeCore.GetMethods(bindingAttr));
 }
Esempio n. 3
0
 public override Type GetInterface(string name, bool ignoreCase)
 {
     return(BaseTypeCore.GetInterface(name, ignoreCase));
 }
Esempio n. 4
0
 public override FieldInfo GetField(string name, BindingFlags bindingAttr)
 {
     return(BaseTypeCore.GetField(name, bindingAttr));
 }
Esempio n. 5
0
 public override FieldInfo[] GetFields(BindingFlags bindingAttr)
 {
     return(BaseTypeCore.GetFields(bindingAttr));
 }
Esempio n. 6
0
 public override EventInfo[] GetEvents(BindingFlags bindingAttr)
 {
     return(BaseTypeCore.GetEvents(bindingAttr));
 }
Esempio n. 7
0
 public override EventInfo GetEvent(string name, BindingFlags bindingAttr)
 {
     return(BaseTypeCore.GetEvent(name, bindingAttr));
 }
Esempio n. 8
0
 public override Type GetElementType()
 {
     return(BaseTypeCore.GetElementType());
 }
Esempio n. 9
0
 public override ConstructorInfo[] GetConstructors(BindingFlags bindingAttr)
 {
     return(BaseTypeCore.GetConstructors(bindingAttr));
 }
Esempio n. 10
0
 public override int GetHashCode()
 {
     return(Name.GetHashCode() ^ BaseTypeCore.GetHashCode() ^ Assembly.GetHashCode());
 }