1 write to m_declaringType
System.Private.CoreLib (1)
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (1)
63m_declaringType = declaringType;
14 references to m_declaringType
System.Private.CoreLib (14)
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (14)
95Signature newSig = new Signature(this, m_declaringType); 108if (!IsVirtual || m_declaringType.IsInterface) 111RuntimeType? parent = (RuntimeType?)m_declaringType.BaseType; 127return m_declaringType; 162HashCode.Combine(m_handle.GetHashCode(), m_declaringType.GetUnderlyingNativeHandle().GetHashCode()); 166ReferenceEquals(m_declaringType, m.m_declaringType) && 213return m_declaringType; 233internal RuntimeType GetRuntimeType() { return m_declaringType; } 234internal RuntimeModule GetRuntimeModule() { return m_declaringType.GetRuntimeModule(); } 326if (!IsVirtual || IsStatic || m_declaringType == null || m_declaringType.IsInterface) 435RuntimeMethodHandle.GetStubIfNeeded(new RuntimeMethodHandleInternal(m_handle), m_declaringType, methodInstantionRuntimeType)) as MethodInfo; 457return (RuntimeType.GetMethodBase(m_declaringType, RuntimeMethodHandle.StripMethodInstantiation(this)) as MethodInfo)!;