Exemplo n.º 1
0
 protected DebuggerCommand(IRInteractiveWorkflow interactiveWorkflow, int cmdId, DebuggerCommandVisibility visibility)
     : base(RGuidList.RCmdSetGuid, cmdId)
 {
     RSession             = interactiveWorkflow.RSession;
     _interactiveWorkflow = interactiveWorkflow;
     _visibility          = visibility;
 }
Exemplo n.º 2
0
 protected AttachDebuggerCommand(IRInteractiveWorkflow interactiveWorkflow, int cmdId, DebuggerCommandVisibility visibility)
     : base(interactiveWorkflow, cmdId, visibility)
 {
     _interactiveWorkflow = interactiveWorkflow;
 }
Exemplo n.º 3
0
 protected AttachDebuggerCommand(IRInteractiveWorkflow interactiveWorkflow, int cmdId, DebuggerCommandVisibility visibility)
     : base(interactiveWorkflow, cmdId, visibility) {
     _interactiveWorkflow = interactiveWorkflow;
 }
Exemplo n.º 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;
 }