コード例 #1
0
 internal abstract bool GetCommonMethodTables(ref CommonMethodTables mCommonMTs);
コード例 #2
0
ファイル: v45runtime.cs プロジェクト: mattwarren/clrmd
 internal override bool GetCommonMethodTables(ref CommonMethodTables mCommonMTs)
 {
     return _sos.GetUsefulGlobals(out mCommonMTs) >= 0;
 }
コード例 #3
0
ファイル: runtimebase.cs プロジェクト: JeffCyr/clrmd
 internal abstract bool GetCommonMethodTables(ref CommonMethodTables mCommonMTs);
コード例 #4
0
ファイル: V45Runtime.cs プロジェクト: snowdream1985/clrmd
 internal override bool GetCommonMethodTables(ref CommonMethodTables mts)
 {
     return(_sos.GetCommonMethodTables(out mts));
 }
コード例 #5
0
ファイル: LegacyRuntime.cs プロジェクト: timhe/clrmd
 internal override bool GetCommonMethodTables(ref CommonMethodTables mCommonMTs)
 {
     return(RequestStruct(DacRequests.USEFULGLOBALS, ref mCommonMTs));
 }
コード例 #6
0
ファイル: legacyruntime.cs プロジェクト: mwatts/clrmd
 internal override bool GetCommonMethodTables(ref CommonMethodTables mCommonMTs)
 {
     return RequestStruct<CommonMethodTables>(DacRequests.USEFULGLOBALS, ref mCommonMTs);
 }
コード例 #7
0
 internal override bool GetCommonMethodTables(ref CommonMethodTables mts) => _sos.GetCommonMethodTables(out mts);