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

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Def/Internal/TextLogic/ITextSearchNavigator2.cs')
-rw-r--r--src/Text/Def/Internal/TextLogic/ITextSearchNavigator2.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Def/Internal/TextLogic/ITextSearchNavigator2.cs b/src/Text/Def/Internal/TextLogic/ITextSearchNavigator2.cs
index 57676ee..c560c27 100644
--- a/src/Text/Def/Internal/TextLogic/ITextSearchNavigator2.cs
+++ b/src/Text/Def/Internal/TextLogic/ITextSearchNavigator2.cs
@@ -13,6 +13,7 @@ namespace Microsoft.VisualStudio.Text.Operations
/// </summary>
public interface ITextSearchNavigator2 : ITextSearchNavigator
{
+#pragma warning disable CA2227 // Collection properties should be read only
/// <summary>
/// Indicates the ranges that should be searched (if any).
/// </summary>
@@ -20,5 +21,6 @@ namespace Microsoft.VisualStudio.Text.Operations
/// If this value to a non-null value will effectively override the ITextSearchNavigator.SearchSpan property.
/// </remarks>
NormalizedSnapshotSpanCollection SearchSpans { get; set; }
+#pragma warning restore CA2227 // Collection properties should be read only
}
}