System.Web.Configuration.(AdapterDictionary,AuthenticationMode,MachineKeyValidation...
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / ICapabilitiesProcess.cs
1 /*
2 Used to determine Browser Capabilities by the Browsers UserAgent String and related
3 Browser supplied Headers.
4 Copyright (C) 2002-Present  Owen Brady (Ocean at xvision.com)
5
6 Permission is hereby granted, free of charge, to any person obtaining a copy 
7 of this software and associated documentation files (the "Software"), to deal
8 in the Software without restriction, including without limitation the rights 
9 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
10 copies of the Software, and to permit persons to whom the Software is furnished
11 to do so, subject to the following conditions:
12
13 The above copyright notice and this permission notice shall be included in all 
14 copies or substantial portions of the Software.
15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
17 INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 
18 PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 
19 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 
20 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 
21 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23 namespace System.Web.Configuration
24 {
25         using System;
26         using System.Collections.Generic;
27         using System.Text;
28
29         internal interface ICapabilitiesProcess
30         {
31                 System.Web.Configuration.CapabilitiesResult Process(string userAgent, System.Collections.IDictionary initialCapabilities);
32                 System.Web.Configuration.CapabilitiesResult Process(System.Web.HttpRequest request, System.Collections.IDictionary initialCapabilities);
33                 System.Web.Configuration.CapabilitiesResult Process(System.Collections.Specialized.NameValueCollection header, System.Collections.IDictionary initialCapabilities);
34         }
35 }