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

Constants.cs « Internal « Reactive « System.Reactive.Windows.Threading « Source « NET « Rx - github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d22ebac7f8946e44b338414bc8c72dfe0b98fb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

namespace System.Reactive
{
    // We can't make those based on the Strings_WindowsThreading.resx file, because the ObsoleteAttribute needs a compile-time constant.

    static class Constants_WindowsThreading
    {
#if !WINDOWS
        public const string OBSOLETE_INSTANCE_PROPERTY = "Use the Current property to retrieve the DispatcherScheduler instance for the current thread's Dispatcher object. See http://go.microsoft.com/fwlink/?LinkID=260866 for more information.";
#endif
    }
}