Fix bugs in sizing TableLayoutPanel (Xamarin bug 18638)
[mono.git] / mcs / class / System.ComponentModel.Composition / src / ComponentModel / System / ComponentModel / Composition / MetadataAttributeAttribute.cs
1 // -----------------------------------------------------------------------\r
2 // Copyright (c) Microsoft Corporation.  All rights reserved.\r
3 // -----------------------------------------------------------------------\r
4 using System;\r
5 \r
6 namespace System.ComponentModel.Composition\r
7 {\r
8     /// <summary>\r
9     ///     Specifies that an attribute can be used to provide metadata for a type, property, field,\r
10     ///     or method marked with the <see cref="ExportAttribute"/>.\r
11     /// </summary>\r
12     [AttributeUsage(AttributeTargets.Class,\r
13                     AllowMultiple=false, Inherited=true)]\r
14     public sealed class MetadataAttributeAttribute : Attribute\r
15     {\r
16         /// <summary>\r
17         ///     Initializes a new instance of the <see cref="MetadataAttributeAttribute"/> class.\r
18         /// </summary>\r
19         public MetadataAttributeAttribute()\r
20         {\r
21         }\r
22     }\r
23 }