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

IFeatureCookie.cs « Features « Def « Core « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b890bf4299aae235d280edf648982277d5f4e3c (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
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Microsoft.VisualStudio.Utilities
{
    /// <summary>
    /// Provides O(1) read only view on the state of the feature
    /// in the <see cref="IFeatureService" /> that created this <see cref="IFeatureCookie" />.
    /// Also exposes an event that provides notification when the state of the feature changes.
    /// </summary>
    public interface IFeatureCookie
    {
        /// <summary>
        /// Provides notification when <see cref="IsEnabled"/> value changes.
        /// </summary>
        event EventHandler<FeatureChangedEventArgs> StateChanged;

        /// <summary>
        /// Up to date state of the feature.
        /// </summary>
        bool IsEnabled { get; }

        /// <summary>
        /// Name of the tracked feature.
        /// </summary>
        string FeatureName { get; }
    }
}