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

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

namespace System.Reactive
{
    /// <summary>
    /// Marks the program elements that are experimental. This class cannot be inherited.
    /// </summary>
    [Experimental, AttributeUsage(AttributeTargets.All, AllowMultiple=false, Inherited=true)]
    public sealed class ExperimentalAttribute : Attribute
    {
    }
}