summaryrefslogtreecommitdiff
path: root/external/rx/Rx/NET/Source/System.Reactive.Experimental/ExperimentalAttribute.cs
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
    {
    }
}