当前位置: 首页>>代码示例>>C#>>正文


C# IRuntimeMethodInfo类代码示例

本文整理汇总了C#中IRuntimeMethodInfo的典型用法代码示例。如果您正苦于以下问题:C# IRuntimeMethodInfo类的具体用法?C# IRuntimeMethodInfo怎么用?C# IRuntimeMethodInfo使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


IRuntimeMethodInfo类属于命名空间,在下文中一共展示了IRuntimeMethodInfo类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: EnsureNonNullMethodInfo

		internal static IRuntimeMethodInfo EnsureNonNullMethodInfo(IRuntimeMethodInfo method)
		{
			if (method == null)
			{
				throw new ArgumentNullException(null, Environment.GetResourceString("Arg_InvalidHandle"));
			}
			return method;
		}
开发者ID:ChristianWulf,项目名称:CSharpKDMDiscoverer,代码行数:8,代码来源:RuntimeMethodHandle.cs

示例2: RuntimeMethodHandle

 internal RuntimeMethodHandle(IRuntimeMethodInfo method)
 {
     m_value = method;
 }
开发者ID:jashook,项目名称:coreclr,代码行数:4,代码来源:RuntimeHandles.cs

示例3: Signature

 [System.Security.SecuritySafeCritical]  // auto-generated
 public Signature(IRuntimeMethodInfo methodHandle, RuntimeType declaringType)
 {
     GetSignature(null, 0, new RuntimeFieldHandleInternal(), methodHandle, declaringType);
 }
开发者ID:jashook,项目名称:coreclr,代码行数:5,代码来源:RuntimeHandles.cs

示例4: GetSignature

 private extern void GetSignature(
     void* pCorSig, int cCorSig,
     RuntimeFieldHandleInternal fieldHandle, IRuntimeMethodInfo methodHandle, RuntimeType declaringType);
开发者ID:jashook,项目名称:coreclr,代码行数:3,代码来源:RuntimeHandles.cs

示例5: StripMethodInstantiation

        [System.Security.SecuritySafeCritical]  // auto-generated
        internal static IRuntimeMethodInfo StripMethodInstantiation(IRuntimeMethodInfo method)
        {
            IRuntimeMethodInfo strippedMethod = method;

            StripMethodInstantiation(method, JitHelpers.GetObjectHandleOnStack(ref strippedMethod));

            return strippedMethod;
        }
开发者ID:jashook,项目名称:coreclr,代码行数:9,代码来源:RuntimeHandles.cs

示例6: GetTypicalMethodDefinition

        [System.Security.SecuritySafeCritical]  // auto-generated
        internal static IRuntimeMethodInfo GetTypicalMethodDefinition(IRuntimeMethodInfo method)
        {
            if (!IsTypicalMethodDefinition(method))
                GetTypicalMethodDefinition(method, JitHelpers.GetObjectHandleOnStack(ref method));

            return method;
        }
开发者ID:jashook,项目名称:coreclr,代码行数:8,代码来源:RuntimeHandles.cs

示例7: IsTypicalMethodDefinition

 internal extern static bool IsTypicalMethodDefinition(IRuntimeMethodInfo method);
开发者ID:jashook,项目名称:coreclr,代码行数:1,代码来源:RuntimeHandles.cs

示例8: GetSpecialSecurityFlags

 static extern internal uint GetSpecialSecurityFlags(IRuntimeMethodInfo method);
开发者ID:jashook,项目名称:coreclr,代码行数:1,代码来源:RuntimeHandles.cs

示例9: GetSecurityFlags

 [System.Security.SecurityCritical]  // auto-generated
 internal static INVOCATION_FLAGS GetSecurityFlags(IRuntimeMethodInfo handle)
 {
     return (INVOCATION_FLAGS)RuntimeMethodHandle.GetSpecialSecurityFlags(handle);
 }
开发者ID:jashook,项目名称:coreclr,代码行数:5,代码来源:RuntimeHandles.cs

示例10: GetName

 [System.Security.SecurityCritical]  // auto-generated
 internal static string GetName(IRuntimeMethodInfo method)
 {
     string name = RuntimeMethodHandle.GetName(method.Value);
     GC.KeepAlive(method);
     return name;
 }
开发者ID:jashook,项目名称:coreclr,代码行数:7,代码来源:RuntimeHandles.cs

示例11: GetMethodDef

 internal extern static int GetMethodDef(IRuntimeMethodInfo method);
开发者ID:jashook,项目名称:coreclr,代码行数:1,代码来源:RuntimeHandles.cs

示例12: GetSlot

        [System.Security.SecurityCritical]  // auto-generated
        internal static int GetSlot(IRuntimeMethodInfo method)
        {
            Contract.Requires(method != null);

            int slot = RuntimeMethodHandle.GetSlot(method.Value);
            GC.KeepAlive(method);
            return slot;
        }
开发者ID:jashook,项目名称:coreclr,代码行数:9,代码来源:RuntimeHandles.cs

示例13: GetDeclaringType

 [System.Security.SecuritySafeCritical]  // auto-generated
 internal static RuntimeType GetDeclaringType(IRuntimeMethodInfo method)
 {
     RuntimeType type = RuntimeMethodHandle.GetDeclaringType(method.Value);
     GC.KeepAlive(method);
     return type;
 }
开发者ID:jashook,项目名称:coreclr,代码行数:7,代码来源:RuntimeHandles.cs

示例14: ConstructInstantiation

 [System.Security.SecuritySafeCritical]  // auto-generated
 internal static string ConstructInstantiation(IRuntimeMethodInfo method, TypeNameFormatFlags format)
 {
     string name = null;
     ConstructInstantiation(EnsureNonNullMethodInfo(method), format, JitHelpers.GetStringHandleOnStack(ref name));
     return name;
 }
开发者ID:jashook,项目名称:coreclr,代码行数:7,代码来源:RuntimeHandles.cs

示例15: HasMethodInstantiation

 [System.Security.SecuritySafeCritical]  // auto-generated
 internal static bool HasMethodInstantiation(IRuntimeMethodInfo method)
 {
     bool fRet = RuntimeMethodHandle.HasMethodInstantiation(method.Value);
     GC.KeepAlive(method);
     return fRet;
 }
开发者ID:jashook,项目名称:coreclr,代码行数:7,代码来源:RuntimeHandles.cs


注:本文中的IRuntimeMethodInfo类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。