当前位置: 首页>>代码示例>>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;未经允许,请勿转载。