System.Reflection.Emit.DynamicResolver.GetInstantiationInfo C# (CSharp) Method

GetInstantiationInfo() private method

private GetInstantiationInfo ( int token ) : void*
token int
return void*
        internal override unsafe void* GetInstantiationInfo(int token)
        {
            GenericMethodInfo gmi = m_scope[token] as GenericMethodInfo;
            if (gmi != null)
            {
                return (void*)gmi.m_context.Value;
            }
            return null;
        }