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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
//------------------------------------------------------------------------------
// <copyright file="MobileDeviceCapabilitiesSectionHandler.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.Mobile
{
using System.Collections;
using System.Configuration;
using System.Reflection;
using System.Xml;
using System.Security.Permissions;
/// <include file='doc\MobileDeviceCapabilitiesSectionHandler.uex' path='docs/doc[@for="MobileDeviceCapabilitiesSectionHandler"]/*' />
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
public class MobileDeviceCapabilitiesSectionHandler : IConfigurationSectionHandler
{
// IConfigurationSectionHandler Methods
/// <include file='doc\MobileDeviceCapabilitiesSectionHandler.uex' path='docs/doc[@for="MobileDeviceCapabilitiesSectionHandler.IConfigurationSectionHandler.Create"]/*' />
/// <internalonly/>
Object IConfigurationSectionHandler.Create(Object parent, Object context,
XmlNode node)
{
return Create(parent, context, node);
}
protected object Create(Object parent, Object context, XmlNode node) {
// see ASURT 123738
if (context == null || context.GetType() != typeof(System.Web.Configuration.HttpConfigurationContext)) {
return null;
}
DeviceFilterDictionary currentFilterDictionary;
if(parent == null)
{
currentFilterDictionary = new DeviceFilterDictionary();
}
else
{
currentFilterDictionary = new DeviceFilterDictionary(
(DeviceFilterDictionary)parent);
}
ConfigurationSectionHelper helper = new ConfigurationSectionHelper();
foreach(XmlNode child in node.ChildNodes)
{
helper.Node = child;
// skip whitespace and comments
if(helper.IsWhitespaceOrComment())
{
continue;
}
// reject nonelements
helper.RejectNonElement();
// handle <filter> tags
if(child.Name.Equals("filter"))
{
String name = helper.RemoveStringAttribute("name", true);
String className = helper.RemoveStringAttribute("type", false);
if(className != null)
{
const String methodAttributeName = "method";
String methodName = helper.RemoveStringAttribute(methodAttributeName, false);
String capabilityName = helper.RemoveStringAttribute("compare", false);
String argumentValue = helper.RemoveStringAttribute("argument", false);
helper.CheckForUnrecognizedAttributes();
if(className == String.Empty)
{
throw new
ConfigurationErrorsException(SR.GetString(SR.DevCapSect_EmptyClass), child);
}
if(methodName == null)
{
throw new
ConfigurationErrorsException(SR.GetString(SR.ConfigSect_MissingAttr, methodAttributeName), child);
}
if(methodName == String.Empty)
{
throw new
ConfigurationErrorsException(SR.GetString(SR.ConfigSect_MissingValue, methodAttributeName), child);
}
if(capabilityName != null || argumentValue != null)
{
String msg;
if (capabilityName != null)
{
msg = SR.GetString(SR.DevCapSect_ExtraCompareDelegator);
}
else
{
msg = SR.GetString(SR.DevCapSect_ExtraArgumentDelegator);
}
throw new ConfigurationErrorsException(msg, child);
}
MobileCapabilities.EvaluateCapabilitiesDelegate evaluator;
Type evaluatorClass = Type.GetType(className);
if(null == evaluatorClass)
{
String msg =
SR.GetString(SR.DevCapSect_NoTypeInfo, className);
throw new ConfigurationErrorsException(msg, child);
}
try
{
evaluator =
(MobileCapabilities.EvaluateCapabilitiesDelegate)
MobileCapabilities.EvaluateCapabilitiesDelegate.CreateDelegate(
typeof(MobileCapabilities.EvaluateCapabilitiesDelegate),
evaluatorClass, methodName);
}
catch(Exception e)
{
String msg =
SR.GetString(SR.DevCapSect_NoCapabilityEval,
methodName, e.Message);
throw new ConfigurationErrorsException(msg, child);
}
currentFilterDictionary.AddCapabilityDelegate(name, evaluator);
}
else
{
String capabilityName = helper.RemoveStringAttribute("compare", false);
String argumentValue = helper.RemoveStringAttribute("argument", false);
String methodName = helper.RemoveStringAttribute("method", false);
helper.CheckForUnrecognizedAttributes();
if(String.IsNullOrEmpty(capabilityName))
{
throw new ConfigurationErrorsException(
SR.GetString(SR.DevCapSect_MustSpecify),
child);
}
if(methodName != null)
{
throw new ConfigurationErrorsException(
SR.GetString(SR.DevCapSect_ComparisonAlreadySpecified),
child);
}
try
{
currentFilterDictionary.AddComparisonDelegate(name, capabilityName, argumentValue);
}
catch(Exception e)
{
String msg = SR.GetString(SR.DevCapSect_UnableAddDelegate,
name, e.Message);
throw new ConfigurationErrorsException(msg, child);
}
}
}
else
{
String msg = SR.GetString(SR.DevCapSect_UnrecognizedTag,
child.Name);
throw new ConfigurationErrorsException(msg, child);
}
helper.Node = null;
}
return currentFilterDictionary;
}
}
}
|