ExperimentalAttribute.cs 457 B

123456789101112
  1. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
  2. namespace System.Reactive
  3. {
  4. /// <summary>
  5. /// Marks the program elements that are experimental. This class cannot be inherited.
  6. /// </summary>
  7. [Experimental, AttributeUsage(AttributeTargets.All, AllowMultiple=false, Inherited=true)]
  8. public sealed class ExperimentalAttribute : Attribute
  9. {
  10. }
  11. }