當前位置: 首頁>>代碼示例>>C#>>正文


C# CorDebug.CorAppDomain類代碼示例

本文整理匯總了C#中Microsoft.Samples.Debugging.CorDebug.CorAppDomain的典型用法代碼示例。如果您正苦於以下問題:C# CorAppDomain類的具體用法?C# CorAppDomain怎麽用?C# CorAppDomain使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


CorAppDomain類屬於Microsoft.Samples.Debugging.CorDebug命名空間,在下文中一共展示了CorAppDomain類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: MDbgAppDomain

 internal MDbgAppDomain(MDbgProcess process, CorAppDomain appDomain, int number)
 {
     Debug.Assert(process != null);
     Debug.Assert(appDomain != null);
     m_process = process;
     m_appDomain = appDomain;
     m_number = number;
 }
開發者ID:uQr,項目名稱:Visual-NHibernate,代碼行數:8,代碼來源:Appdomain.cs

示例2: MoveNext

 //
 // IEnumerator interface
 //
 public bool MoveNext()
 {
     ICorDebugAppDomain[] a = new ICorDebugAppDomain [1];
     uint c = 0;
     int r = m_enum.Next ((uint) a.Length, a, out c);
     if (r==0 && c==1) // S_OK && we got 1 new element
         m_ad = new CorAppDomain (a[0]);
     else
         m_ad = null;
     return m_ad != null;
 }
開發者ID:uQr,項目名稱:Visual-NHibernate,代碼行數:14,代碼來源:AppDomainEnumerator.cs

示例3: CorStepCompleteEventArgs

 public CorStepCompleteEventArgs(CorAppDomain appDomain, CorThread thread,
                                  CorStepper stepper, CorDebugStepReason stepReason)
     : base(appDomain, thread)
 {
     m_stepper = stepper;
     m_stepReason = stepReason;
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:7,代碼來源:Debugger.cs

示例4: CorBreakpointEventArgs

 public CorBreakpointEventArgs(CorAppDomain appDomain,
                                CorThread thread,
                                CorBreakpoint managedBreakpoint)
     : base(appDomain, thread)
 {
     m_break = managedBreakpoint;
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:7,代碼來源:Debugger.cs

示例5: CorThreadEventArgs

 public CorThreadEventArgs(CorAppDomain appDomain, CorThread thread)
     : base(appDomain != null ? appDomain : thread.AppDomain)
 {
     Thread = thread;
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:5,代碼來源:Debugger.cs

示例6: CorAppDomainBaseEventArgs

 public CorAppDomainBaseEventArgs(CorAppDomain ad)
     : base(ad)
 {
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:4,代碼來源:Debugger.cs

示例7: CorAppDomainEventArgs

 public CorAppDomainEventArgs(CorProcess process, CorAppDomain ad)
     : base(process)
 {
     m_ad = ad;
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:5,代碼來源:Debugger.cs

示例8: CorException2EventArgs

 public CorException2EventArgs(CorAppDomain appDomain,
                               CorThread thread,
                               CorFrame frame,
                               int offset,
                               CorDebugExceptionCallbackType eventType,
                               int flags,
                               ManagedCallbackType callbackType)
     : base(appDomain, thread, callbackType)
 {
     m_frame = frame;
     m_offset = offset;
     m_eventType = eventType;
     m_flags = flags;
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:14,代碼來源:Debugger.cs

示例9: CorUpdateModuleSymbolsEventArgs

 public CorUpdateModuleSymbolsEventArgs(CorAppDomain appDomain,
                                         CorModule managedModule,
                                         IStream stream)
     : base(appDomain, managedModule)
 {
     m_stream = stream;
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:7,代碼來源:Debugger.cs

示例10: CorLogSwitchEventArgs

 public CorLogSwitchEventArgs(CorAppDomain appDomain, CorThread thread,
                               int level, int reason, string logSwitchName, string parentName,
                               ManagedCallbackType callbackType)
     : base(appDomain, thread, callbackType)
 {
     m_level = level;
     m_reason = reason;
     m_logSwitchName = logSwitchName;
     m_parentName = parentName;
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:10,代碼來源:Debugger.cs

示例11: CorLogMessageEventArgs

 public CorLogMessageEventArgs(CorAppDomain appDomain, CorThread thread,
                                int level, string logSwitchName, string message,
                                ManagedCallbackType callbackType)
     : base(appDomain, thread, callbackType)
 {
     m_level = level;
     m_logSwitchName = logSwitchName;
     m_message = message;
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:9,代碼來源:Debugger.cs

示例12: CorAssemblyEventArgs

 public CorAssemblyEventArgs(CorAppDomain appDomain,
                              CorAssembly assembly, ManagedCallbackType callbackType)
     : base(appDomain, callbackType)
 {
     m_assembly = assembly;
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:6,代碼來源:Debugger.cs

示例13: CorClassEventArgs

 public CorClassEventArgs(CorAppDomain appDomain, CorClass managedClass,
     ManagedCallbackType callbackType)
     : base(appDomain, callbackType)
 {
     m_class = managedClass;
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:6,代碼來源:Debugger.cs

示例14: CorFunctionRemapCompleteEventArgs

 public CorFunctionRemapCompleteEventArgs(CorAppDomain appDomain,
                                    CorThread thread,
                                    CorFunction managedFunction,
                                    ManagedCallbackType callbackType
                                    )
     : base(appDomain, thread, callbackType)
 {
     m_managedFunction = managedFunction;
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:9,代碼來源:Debugger.cs

示例15: CorExceptionUnwind2EventArgs

 public CorExceptionUnwind2EventArgs(CorAppDomain appDomain, CorThread thread,
                                     CorDebugExceptionUnwindCallbackType eventType,
                                     int flags,
                                     ManagedCallbackType callbackType)
     : base(appDomain, thread, callbackType)
 {
     m_eventType = eventType;
     m_flags = flags;
 }
開發者ID:fedorw,項目名稱:monodevelop,代碼行數:9,代碼來源:Debugger.cs


注:本文中的Microsoft.Samples.Debugging.CorDebug.CorAppDomain類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。