1 write to UnderlyingMethod
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingMethodInfo.cs (1)
18
UnderlyingMethod
= method;
40 references to UnderlyingMethod
System.Reflection.Context (40)
System\Reflection\Context\Custom\AttributeUtils.cs (2)
53
IEnumerable<object> attributes = GetFilteredAttributes(context, method.
UnderlyingMethod
, attributeFilterType);
82
IEnumerable<object> inheritedAttributes = GetFilteredAttributes(context, method.
UnderlyingMethod
, attributeFilterType);
System\Reflection\Context\Delegation\DelegatingMethodInfo.cs (32)
23
get { return
UnderlyingMethod
.Attributes; }
28
get { return
UnderlyingMethod
.CallingConvention; }
33
get { return
UnderlyingMethod
.ContainsGenericParameters; }
38
get { return
UnderlyingMethod
.DeclaringType; }
43
get { return
UnderlyingMethod
.IsGenericMethod; }
48
get { return
UnderlyingMethod
.IsGenericMethodDefinition; }
53
get { return
UnderlyingMethod
.IsSecurityCritical; }
58
get { return
UnderlyingMethod
.IsSecuritySafeCritical; }
63
get { return
UnderlyingMethod
.IsSecurityTransparent; }
68
get { return
UnderlyingMethod
.MetadataToken; }
73
get { return
UnderlyingMethod
.MethodHandle; }
78
get { return
UnderlyingMethod
.Module; }
83
get { return
UnderlyingMethod
.Name; }
88
get { return
UnderlyingMethod
.ReflectedType; }
93
get { return
UnderlyingMethod
.ReturnParameter; }
98
get { return
UnderlyingMethod
.ReturnTypeCustomAttributes; }
103
get { return
UnderlyingMethod
.ReturnType; }
110
return
UnderlyingMethod
.GetBaseDefinition();
115
return
UnderlyingMethod
.GetCustomAttributes(attributeType, inherit);
120
return
UnderlyingMethod
.GetCustomAttributes(inherit);
125
return
UnderlyingMethod
.GetCustomAttributesData();
130
return
UnderlyingMethod
.GetGenericArguments();
135
return
UnderlyingMethod
.GetGenericMethodDefinition();
140
return
UnderlyingMethod
.GetMethodBody();
145
return
UnderlyingMethod
.GetMethodImplementationFlags();
150
return
UnderlyingMethod
.GetParameters();
155
return
UnderlyingMethod
.Invoke(obj, invokeAttr, binder, parameters, culture);
160
return
UnderlyingMethod
.IsDefined(attributeType, inherit);
166
return
UnderlyingMethod
.MakeGenericMethod(typeArguments);
171
return
UnderlyingMethod
.CreateDelegate(delegateType);
176
return
UnderlyingMethod
.CreateDelegate(delegateType, target);
181
return
UnderlyingMethod
.ToString();
System\Reflection\Context\Projection\ProjectingMethodInfo.cs (3)
127
UnderlyingMethod
.Equals(other.
UnderlyingMethod
);
132
return Projector.GetHashCode() ^
UnderlyingMethod
.GetHashCode();
System\Reflection\Context\Virtual\InheritedMethodInfo.cs (3)
39
UnderlyingMethod
.Equals(other.
UnderlyingMethod
) &&
45
return
UnderlyingMethod
.GetHashCode() ^ ReflectedType.GetHashCode();