當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。