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

DispatcherEventArgs.cs « System.Windows.Threading « WindowsBase « FPF « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02347c5c89353d23b8adcd57c937a2421c9e4fb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

namespace System.Windows.Threading
{
    public class DispatcherEventArgs : EventArgs
    {
        public Dispatcher Dispatcher { get; }

        internal DispatcherEventArgs(Dispatcher dispatcher)
            => Dispatcher = dispatcher;
    }
}