1 write to m_containingType
System.Private.CoreLib (1)
src\System\Reflection\Emit\RuntimeMethodBuilder.cs (1)
81m_containingType = type;
21 references to m_containingType
System.Private.CoreLib (21)
src\System\Reflection\Emit\RuntimeMethodBuilder.cs (21)
151m_containingType.ThrowIfCreated(); 345return m_containingType != null && m_containingType.IsCreated(); 351return m_containingType; 407public override Module Module => m_containingType.Module; 413if (m_containingType.m_isHiddenGlobalType) 415return m_containingType; 459if (!m_bIsBaked || m_containingType == null || m_containingType.BakedRuntimeType == null) 462MethodInfo rmi = m_containingType.GetMethod(m_strName, m_parameterTypes!)!; 471if (!m_bIsBaked || m_containingType == null || m_containingType.BakedRuntimeType == null) 474MethodInfo rmi = m_containingType.GetMethod(m_strName, m_parameterTypes!)!; 565lock (m_containingType.m_listMethods!) 574for (i = m_containingType.m_lastTokenizedMethod + 1; i < m_containingType.m_listMethods.Count; ++i) 576currentMethod = m_containingType.m_listMethods[i]; 583m_containingType.m_lastTokenizedMethod = i; 599int token = RuntimeTypeBuilder.DefineMethod(new QCallModule(ref module), m_containingType.MetadataToken, m_strName, sigBytes, sigLength, Attributes); 644m_containingType.ThrowIfCreated(); 656m_containingType.ThrowIfCreated();