[corlib] Avoid unnecessary ephemeron array resizes
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / View / OutlineView / ShowInOutlineViewAttribute.cs
1 //----------------------------------------------------------------
2 // <copyright company="Microsoft Corporation">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //----------------------------------------------------------------
6
7 namespace System.Activities.Presentation.View.OutlineView
8 {
9     using System;
10
11     /// <summary>
12     /// Shows instances of this class in outline view.
13     /// </summary>
14     [AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = false)]
15     public sealed class ShowInOutlineViewAttribute : Attribute
16     {
17         /// <summary>
18         /// Gets or sets this specify property name to be shown in place of the current
19         /// ModelItem
20         /// </summary>    
21         public string PromotedProperty { get; set; }
22     }
23 }