Got rid of those Internal(1) warnings
[mono.git] / mcs / class / System.Web / System.Web / WebCategoryAttribute.cs
1 //
2 // System.Web.WebCategoryAttribute.cs
3 //
4 // Authors:
5 //   Gaurav Vaish (gvaish@iitk.ac.in)
6 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //
8 // (C) Gaurav Vaish (2002)
9 // (C) 2003 Andreas Nahr
10 //
11 \r
12 using System;\r
13 using System.ComponentModel;\r
14 \r
15 namespace System.Web\r
16 {\r
17         [AttributeUsage(AttributeTargets.All)]\r
18         internal sealed class WebCategoryAttribute : CategoryAttribute\r
19         {\r
20                 public WebCategoryAttribute (string category)
21                         : base (category)\r
22                 {\r
23                 }\r
24 \r
25                 protected override string GetLocalizedString (string value)\r
26                 {
27                         return Locale.GetText (value);\r
28                 }\r
29         }\r
30 }\r