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/TextLogic/Tags/IUrlTag.cs')
-rw-r--r--src/Text/Def/TextLogic/Tags/IUrlTag.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Text/Def/TextLogic/Tags/IUrlTag.cs b/src/Text/Def/TextLogic/Tags/IUrlTag.cs
new file mode 100644
index 0000000..1b6ae9c
--- /dev/null
+++ b/src/Text/Def/TextLogic/Tags/IUrlTag.cs
@@ -0,0 +1,14 @@
+using System;
+namespace Microsoft.VisualStudio.Text.Tagging
+{
+ /// <summary>
+ /// A tag that represents a URL.
+ /// </summary>
+ public interface IUrlTag : ITag
+ {
+ /// <summary>
+ /// The URL.
+ /// </summary>
+ Uri Url { get; }
+ }
+}