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
|
//------------------------------------------------------------------------------
// <copyright file="MobileControlBuilder.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Diagnostics;
using System.Drawing;
using System.Globalization;
using System.Web;
using System.Web.UI;
using System.Web.UI.Design.WebControls;
using System.Web.UI.WebControls;
using System.Security.Permissions;
namespace System.Web.UI.MobileControls
{
/*
* Control builder for mobile controls.
*
* Copyright (c) 2000 Microsoft Corporation
*/
/// <include file='doc\MobileControlBuilder.uex' path='docs/doc[@for="MobileControlBuilder"]/*' />
[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 MobileControlBuilder : ControlBuilder
{
/// <include file='doc\MobileControlBuilder.uex' path='docs/doc[@for="MobileControlBuilder.AllowWhitespaceLiterals"]/*' />
public override bool AllowWhitespaceLiterals()
{
return false;
}
/// <include file='doc\MobileControlBuilder.uex' path='docs/doc[@for="MobileControlBuilder.GetChildControlType"]/*' />
public override Type GetChildControlType(String tagName, IDictionary attributes)
{
Type type;
if (String.Compare(tagName, typeof(DeviceSpecific).Name, StringComparison.OrdinalIgnoreCase) == 0)
{
type = typeof(DeviceSpecific);
}
else
{
type = base.GetChildControlType(tagName, attributes);
//if (type == null)
//{
// type = Parser.RootBuilder.GetChildControlType(tagName, attributes);
//}
}
// enforce valid control nesting behaviour
if (typeof(Form).IsAssignableFrom(type))
{
throw new Exception(
SR.GetString(SR.MobileControlBuilder_ControlMustBeTopLevelOfPage,
"Form"));
}
if (typeof(StyleSheet).IsAssignableFrom(type))
{
throw new Exception(
SR.GetString(SR.MobileControlBuilder_ControlMustBeTopLevelOfPage,
"StyleSheet"));
}
if (typeof(Style).IsAssignableFrom(type) && !typeof(StyleSheet).IsAssignableFrom(ControlType))
{
throw new Exception(
SR.GetString(SR.MobileControlBuilder_StyleMustBeInStyleSheet));
}
return type;
}
}
}
|