System.Reflection.Emit.SignatureHelper.GetMethodSigHelper C# (CSharp) Method

GetMethodSigHelper() public static method

public static GetMethodSigHelper ( System callingConvention, System returnType ) : System.Reflection.Emit.SignatureHelper
callingConvention System
returnType System
return System.Reflection.Emit.SignatureHelper
        public static System.Reflection.Emit.SignatureHelper GetMethodSigHelper(System.Reflection.CallingConventions callingConvention, System.Type returnType) { throw null; }
        [System.Security.SecuritySafeCriticalAttribute]

Same methods

SignatureHelper::GetMethodSigHelper ( System mod, System callingConvention, System returnType ) : System.Reflection.Emit.SignatureHelper

Usage Example

Esempio n. 1
0
        internal SignatureHelper GetMethodSignature()
        {
            if (m_parameterTypes == null)
            {
                m_parameterTypes = EmptyArray <Type> .Value;
            }

            m_signature = SignatureHelper.GetMethodSigHelper(m_module, m_callingConvention, m_inst != null ? m_inst.Length : 0,
                                                             m_returnType == null ? typeof(void) : m_returnType, m_returnTypeRequiredCustomModifiers, m_returnTypeOptionalCustomModifiers,
                                                             m_parameterTypes, m_parameterTypeRequiredCustomModifiers, m_parameterTypeOptionalCustomModifiers);

            return(m_signature);
        }
All Usage Examples Of System.Reflection.Emit.SignatureHelper::GetMethodSigHelper