Merge pull request #757 from mlintner/master
[mono.git] / mcs / class / System.Web.Mvc3 / Mvc / UrlParameter.cs
1 namespace System.Web.Mvc {
2     using System;
3     using System.Diagnostics.CodeAnalysis;
4
5     public sealed class UrlParameter {
6
7         [SuppressMessage("Microsoft.Security", "CA2104:DoNotDeclareReadOnlyMutableReferenceTypes", Justification = "This type is immutable.")]
8         public static readonly UrlParameter Optional = new UrlParameter();
9
10         // singleton constructor
11         private UrlParameter() { }
12
13         public override string ToString() {
14             return String.Empty;
15         }
16     }
17 }