/// <summary> /// Manually execute a command on the OldChain (so this filter won't participate in the command filtering). /// </summary> private void ExecuteCommand(VSConstants.VSStd2KCmdID idCommand, object args = null) { OldChain.Execute(idCommand, args); }
/// <summary> /// Manually execute a command on the OldChain (so this filter won't participate in the command filtering). /// </summary> private void ExecuteCommand(VSConstants.VSStd2KCmdID idCommand, object args = null) { ThreadHelper.ThrowIfNotOnUIThread(); OldChain.Execute(idCommand, args); }