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

UrlTag.cs « Tags « TextLogic « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8ed5214a3b99d231a8d72d5a8b00a613372d27f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//
using System;

namespace Microsoft.VisualStudio.Text.Tagging
{
    /// <summary>
    /// An implementation of <see cref="IUrlTag" />.
    /// </summary>
    public class UrlTag : IUrlTag
    {
        public Uri Url { get; private set; }

        /// <summary>
        /// Create a new tag with the given URL.
        /// </summary>
        /// <exception cref="ArgumentNullException">Thrown if <paramref name="url" /> is <c>null</c></exception>
        public UrlTag(Uri url)
        {
            if (url == null)
                throw new ArgumentNullException(nameof(url));

            Url = url;
        }
    }
}