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


C# System.RuntimeFieldHandleInternal类代码示例

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


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

示例1: AcquiresContextFromThis

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

示例2: GetSignature

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

示例3: GetApproxDeclaringType

 internal static extern RuntimeType GetApproxDeclaringType(RuntimeFieldHandleInternal field);
开发者ID:jashook,项目名称:coreclr,代码行数:1,代码来源:RuntimeHandles.cs

示例4: GetStaticFieldForGenericType

 internal static extern RuntimeFieldHandleInternal GetStaticFieldForGenericType(RuntimeFieldHandleInternal field, RuntimeType declaringType);
开发者ID:jashook,项目名称:coreclr,代码行数:1,代码来源:RuntimeHandles.cs

示例5: MatchesNameHash

 internal static extern bool MatchesNameHash(RuntimeFieldHandleInternal handle, uint hash);
开发者ID:jashook,项目名称:coreclr,代码行数:1,代码来源:RuntimeHandles.cs

示例6: GetAttributes

 internal static extern FieldAttributes GetAttributes(RuntimeFieldHandleInternal field); 
开发者ID:jashook,项目名称:coreclr,代码行数:1,代码来源:RuntimeHandles.cs

示例7: _GetUtf8Name

 private static extern unsafe void* _GetUtf8Name(RuntimeFieldHandleInternal field); 
开发者ID:jashook,项目名称:coreclr,代码行数:1,代码来源:RuntimeHandles.cs

示例8: GetUtf8Name

 [System.Security.SecuritySafeCritical]  // auto-generated
 internal static unsafe Utf8String GetUtf8Name(RuntimeFieldHandleInternal field) { return new Utf8String(_GetUtf8Name(field)); }
开发者ID:jashook,项目名称:coreclr,代码行数:2,代码来源:RuntimeHandles.cs

示例9: RuntimeFieldInfoStub

 public RuntimeFieldInfoStub(IntPtr methodHandleValue, object keepalive)
 {
     m_keepalive = keepalive;
     m_fieldHandle = new RuntimeFieldHandleInternal(methodHandleValue);
 }
开发者ID:jashook,项目名称:coreclr,代码行数:5,代码来源:RuntimeHandles.cs

示例10: GetSignature

 private static extern unsafe void GetSignature(ref SignatureStruct signature, void* pCorSig, int cCorSig, RuntimeFieldHandleInternal fieldHandle, IRuntimeMethodInfo methodHandle, RuntimeType declaringType);
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:1,代码来源:Signature.cs

示例11: RtFieldInfo

 [System.Security.SecurityCritical]  // auto-generated
 internal RtFieldInfo(
     RuntimeFieldHandleInternal handle, RuntimeType declaringType, RuntimeTypeCache reflectedTypeCache, BindingFlags bindingFlags) 
     : base(reflectedTypeCache, declaringType, bindingFlags)
 {
     m_fieldHandle = handle.Value;
     m_fieldAttributes = RuntimeFieldHandle.GetAttributes(handle);
 }
开发者ID:nietras,项目名称:coreclr,代码行数:8,代码来源:FieldInfo.cs

示例12: MatchesNameHash

		internal static bool MatchesNameHash(RuntimeFieldHandleInternal field, uint hash)
		{
			return RuntimeFieldHandle.MatchesNameHash(field.Value, hash);
		}
开发者ID:ChristianWulf,项目名称:CSharpKDMDiscoverer,代码行数:4,代码来源:RuntimeFieldHandle.cs

示例13: GetSignature

 private static extern void GetSignature(
     ref SignatureStruct signature, // This parameter must be passed as a pointer to the stack to prevent GC holes 
     void* pCorSig, int cCorSig,
     RuntimeFieldHandleInternal fieldHandle, IRuntimeMethodInfo methodHandle, RuntimeType declaringType); 
开发者ID:sjyanxin,项目名称:WPFSource,代码行数:4,代码来源:RuntimeHandles.cs


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