◆ __GetMethodImpls()
| override MethodInfo[] IKVM.Reflection.MethodInfoWithReflectedType.__GetMethodImpls |
( |
| ) |
|
◆ __GetMethodOnTypeDefinition()
| override MethodBase IKVM.Reflection.MethodInfoWithReflectedType.__GetMethodOnTypeDefinition |
( |
| ) |
|
◆ Equals()
| override bool IKVM.Reflection.MethodInfoWithReflectedType.Equals |
( |
object | obj | ) |
|
Definition at line 47 of file MethodInfoWithReflectedType.cs.
48 {
49 var other = obj as MethodInfoWithReflectedType;
50 return other != null
51 && other.reflectedType == reflectedType
52 && other.method == method;
53 }
◆ GetGenericArguments()
| override Type[] IKVM.Reflection.MethodInfoWithReflectedType.GetGenericArguments |
( |
| ) |
|
◆ GetGenericMethodDefinition()
| override MethodInfo IKVM.Reflection.MethodInfoWithReflectedType.GetGenericMethodDefinition |
( |
| ) |
|
◆ GetHashCode()
| override int IKVM.Reflection.MethodInfoWithReflectedType.GetHashCode |
( |
| ) |
|
◆ GetMethodBody()
| override MethodBody IKVM.Reflection.MethodInfoWithReflectedType.GetMethodBody |
( |
| ) |
|
◆ GetMethodImplementationFlags()
| override MethodImplAttributes IKVM.Reflection.MethodInfoWithReflectedType.GetMethodImplementationFlags |
( |
| ) |
|
◆ GetParameters()
| override ParameterInfo[] IKVM.Reflection.MethodInfoWithReflectedType.GetParameters |
( |
| ) |
|
Definition at line 70 of file MethodInfoWithReflectedType.cs.
71 {
72 var parameters = method.GetParameters();
73 for (int i = 0; i < parameters.Length; i++)
74 parameters[i] = new ParameterInfoWrapper(this, parameters[i]);
75
76 return parameters;
77 }
◆ MakeGenericMethod()
| override MethodInfo IKVM.Reflection.MethodInfoWithReflectedType.MakeGenericMethod |
( |
params Type[] | typeArguments | ) |
|
◆ ToString()
| override string IKVM.Reflection.MethodInfoWithReflectedType.ToString |
( |
| ) |
|
◆ __IsMissing
| override bool IKVM.Reflection.MethodInfoWithReflectedType.__IsMissing |
|
get |
◆ __MethodRVA
| override int IKVM.Reflection.MethodInfoWithReflectedType.__MethodRVA |
|
get |
◆ Attributes
| override MethodAttributes IKVM.Reflection.MethodInfoWithReflectedType.Attributes |
|
get |
◆ CallingConvention
| override CallingConventions IKVM.Reflection.MethodInfoWithReflectedType.CallingConvention |
|
get |
◆ ContainsGenericParameters
| override bool IKVM.Reflection.MethodInfoWithReflectedType.ContainsGenericParameters |
|
get |
◆ DeclaringType
| override Type IKVM.Reflection.MethodInfoWithReflectedType.DeclaringType |
|
get |
◆ IsGenericMethod
| override bool IKVM.Reflection.MethodInfoWithReflectedType.IsGenericMethod |
|
get |
◆ IsGenericMethodDefinition
| override bool IKVM.Reflection.MethodInfoWithReflectedType.IsGenericMethodDefinition |
|
get |
◆ MetadataToken
| override int IKVM.Reflection.MethodInfoWithReflectedType.MetadataToken |
|
get |
◆ Module
| override Module IKVM.Reflection.MethodInfoWithReflectedType.Module |
|
get |
◆ Name
| override string IKVM.Reflection.MethodInfoWithReflectedType.Name |
|
get |
◆ ReflectedType
| override Type IKVM.Reflection.MethodInfoWithReflectedType.ReflectedType |
|
get |
◆ ReturnParameter
| override ParameterInfo IKVM.Reflection.MethodInfoWithReflectedType.ReturnParameter |
|
get |
◆ ReturnType
| override Type IKVM.Reflection.MethodInfoWithReflectedType.ReturnType |
|
get |
The documentation for this class was generated from the following file: