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