Merge pull request #3622 from rolfbjarne/remove-stray-file
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Base / Core / PropertyEditing / EditorReuseAttribute.cs
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------
4 namespace System.Activities.Presentation.PropertyEditing
5 {
6     using System.Runtime;
7
8     [Fx.Tag.XamlVisible(false)]
9     [AttributeUsage(AttributeTargets.Property | AttributeTargets.Class)]
10     public sealed class EditorReuseAttribute : Attribute
11     {
12         bool reuseEditor;
13
14         public EditorReuseAttribute(bool reuseEditor)
15         {
16             this.reuseEditor = reuseEditor;
17         }
18         public bool ReuseEditor
19         { get { return this.reuseEditor; } }
20     }
21 }