2010-03-02 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Web / System.Web.Configuration_2.0 / NullableStringValidator.cs
blob0ffd7272c448df4cc0c3e741bdd29a9fbb1db355
1 //
2 // NullableStringValidator.cs
3 //
4 // Authors:
5 // Atsushi Enomoto (atsushi@ximian.com)
6 // Lluis Sanchez Gual (lluis@novell.com)
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining
9 // a copy of this software and associated documentation files (the
10 // "Software"), to deal in the Software without restriction, including
11 // without limitation the rights to use, copy, modify, merge, publish,
12 // distribute, sublicense, and/or sell copies of the Software, and to
13 // permit persons to whom the Software is furnished to do so, subject to
14 // the following conditions:
15 //
16 // The above copyright notice and this permission notice shall be
17 // included in all copies or substantial portions of the Software.
18 //
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
30 // copied StringValidator.cs and changed class name and just one line
31 // in Validate() (see there).
33 #if NET_2_0
35 namespace System.Configuration
37 internal class NullableStringValidator: ConfigurationValidatorBase
39 char[] invalidCharacters;
40 int maxLength;
41 int minLength;
43 public NullableStringValidator (int minLength)
45 this.minLength = minLength;
46 maxLength = int.MaxValue;
49 public NullableStringValidator (int minLength, int maxLength)
51 this.minLength = minLength;
52 this.maxLength = maxLength;
55 public NullableStringValidator (int minLength, int maxLength, string invalidCharacters)
57 this.minLength = minLength;
58 this.maxLength = maxLength;
59 if (invalidCharacters != null)
60 this.invalidCharacters = invalidCharacters.ToCharArray ();
63 public override bool CanValidate (Type type)
65 return type == typeof(string);
68 public override void Validate (object value)
70 // This is the only difference from StringValidator:
71 // null value is always allowed.
72 if (value == null)
73 return;
75 string s = (string) value;
76 if (s == null || s.Length < minLength)
77 throw new ArgumentException ("The string must be at least " + minLength + " characters long.");
78 if (s.Length > maxLength)
79 throw new ArgumentException ("The string must be no more than " + maxLength + " characters long.");
80 if (invalidCharacters != null) {
81 int i = s.IndexOfAny (invalidCharacters);
82 if (i != -1)
83 throw new ArgumentException (String.Format ("The string cannot contain any of the following characters: '{0}'.", invalidCharacters));
89 #endif