browsercap.zip
browsercheck.zip
OceanWebHttpCapabilities.zip
Ocean
bin
Release
Ocean.Cmd.HttpCapabilities.exe
Ocean.Nunit.HttpCapabilities.dll
Ocean.Web.HttpCapabilities.dll
cmd
HttpCapabilities
App.ico
HttpCapabilities.build
license
Nunit
HttpCapabilities
CodeProject
Web
HttpCapabilities
Resources
xml.BrowserCap
xml.CodeProject
xml.Mobile
xml.SpidersBots
|
/*
Used to determine Browser Capabilities by the Browsers UserAgent string.
Copyright (C) 2002-Present Owen Brady (Ocean at xvision.com)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
using System;
namespace Ocean.Web.HttpCapabilities
{
/// <summary>
/// Configuration section handler used to gain acces to the browser config section to allow the
/// procesing of useragent and header information to determine the browser details.
/// </summary>
public class SectionHandler:System.Configuration.IConfigurationSectionHandler
{
/// <summary>
/// Implements configuration section handler, and returns a settings object which will use the config data to process the browser identification request.
/// </summary>
/// <param name="parent">
/// The configuration settings in a corresponding parent configuration section.
/// </param>
/// <param name="context">
/// An HttpConfigurationContext when Create is called from the ASP.NET configuration system. Otherwise, this parameter is reserved and is a null reference (Nothing in Visual Basic).
/// </param>
/// <param name="section">
/// The XmlNode that contains the configuration information from the configuration file. Provides direct access to the XML contents of the configuration section.
/// </param>
/// <returns>
/// A Settings object.
/// </returns>
public System.Object Create ( System.Object parent , System.Object context , System.Xml.XmlNode section )
{
Settings settings;
if(parent == null)
{
settings = Settings.Default;
}
else
{
settings = (Settings)parent;
}
if (section!=null)
{
settings.AddSettings(section);
}
else
{
settings.AddSettings(Ocean.Web.HttpCapabilities.EmbededFile.BrowserCap);
}
return settings;
}
}
}
|
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please
let us know and we'll add colourisation support for it.
Chris is the Co-founder, Administrator, Architect, Chief Editor and Shameless Hack who wrote and runs The Code Project. He's been programming since 1988 while pretending to be, in various guises, an astrophysicist, mathematician, physicist, hydrologist, geomorphologist, defence intelligence researcher and then, when all that got a bit rough on the nerves, a web developer. He is a Microsoft Visual C++ MVP both globally and for Canada locally.
His programming experience includes C/C++, C#, SQL, MFC, ASP, ASP.NET, and far, far too much FORTRAN. He has worked on PocketPCs, AIX mainframes, Sun workstations, and a CRAY YMP C90 behemoth but finds notebooks take up less desk space.
He dodges, he weaves, and he never gets enough sleep. He is kind to small animals.
Chris was born and bred in Australia but splits his time between Toronto and Melbourne, depending on the weather. For relaxation he is into road cycling, snowboarding, rock climbing, and storm chasing.