Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IBypassUndoEditTag.cs « TextLogic « Internal « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33d07c80ad326c9ec54788cd3f10e9c62c244c34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//
// This file contain internal APIs that are subject to change without notice.
// Use at your own risk.
//
namespace Microsoft.VisualStudio.Text
{
    /// <summary>
    /// Edit tag indicating that the edit should be ignored by the undo system.
    /// </summary>
    /// <remarks>
    /// <para>
    ///  Yes this is as dangerous as it sounds. Using it will corrupt the undo stack so
    ///  do not use unless you are prepared to do the appropriate clean-up.
    /// </para>
    /// </remarks>
    public interface IBypassUndoEditTag : IUndoEditTag
    {
    }
}