示例#1
0
 protected DebuggerCommand(IRInteractiveWorkflow interactiveWorkflow, int cmdId, DebuggerCommandVisibility visibility)
     : base(RGuidList.RCmdSetGuid, cmdId)
 {
     RSession             = interactiveWorkflow.RSession;
     _interactiveWorkflow = interactiveWorkflow;
     _visibility          = visibility;
 }
示例#2
0
 protected AttachDebuggerCommand(IRInteractiveWorkflow interactiveWorkflow, int cmdId, DebuggerCommandVisibility visibility)
     : base(interactiveWorkflow, cmdId, visibility)
 {
     _interactiveWorkflow = interactiveWorkflow;
 }
示例#3
0
 protected AttachDebuggerCommand(IRInteractiveWorkflow interactiveWorkflow, int cmdId, DebuggerCommandVisibility visibility)
     : base(interactiveWorkflow, cmdId, visibility) {
     _interactiveWorkflow = interactiveWorkflow;
 }
示例#4
0
 protected DebuggerWrappedCommand(IRInteractiveWorkflow interactiveWorkflow, int cmdId, Guid shellGroup, int shellCmdId, DebuggerCommandVisibility visibility)
     : base(interactiveWorkflow, cmdId, visibility)
 {
     _shellGroup = shellGroup;
     _shellCmdId = (uint)shellCmdId;
 }
 protected DebuggerWrappedCommand(IRInteractiveWorkflow interactiveWorkflow, int cmdId, Guid shellGroup, int shellCmdId, DebuggerCommandVisibility visibility)
     : base(interactiveWorkflow, cmdId, visibility) {
     _shellGroup = shellGroup;
     _shellCmdId = (uint)shellCmdId;
 }