Welcome to mirror list, hosted at ThFree Co, Russian Federation.

WebHashCodeProvider.cs « System.Web.Utils « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2db4a4577fa31ffd6ee246d16fa0b43a4e6425b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**

 * Namespace: System.Web.Utils
 * Class:     WebHashCodeProvider
 *

 * Author:  Gaurav Vaish

 * Maintainer: gvaish@iitk.ac.in

 * Contact: <my_scripts2001@yahoo.com>, <gvaish@iitk.ac.in>

 * Implementation: yes

 * Status:  ??%

 *

 * (C) Gaurav Vaish (2001)

 */


using System.Collections;
using System.Globalization;

namespace System.Web.Utils
{
	public class WebHashCodeProvider : IHashCodeProvider
	{
		private static IHashCodeProvider defHcp;

		public WebHashCodeProvider()
		{
		}
		
		int IHashCodeProvider.GetHashCode(object key)
		{
			return Default.GetHashCode(key);
		}

		public static IHashCodeProvider Default
		{
			get
			{
				if(defHcp==null)
				{
					 defHcp = new CaseInsensitiveHashCodeProvider(CultureInfo.InvariantCulture);
				}
				return defHcp;
			}
		}
	}
}