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
|
//------------------------------------------------------------------------------
// <copyright file="MobileTextWriter.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.IO;
using System.Web;
using System.Web.Mobile;
using System.Web.UI;
using System.Web.UI.MobileControls.Adapters;
using System.Security.Permissions;
#if COMPILING_FOR_SHIPPED_SOURCE
namespace System.Web.UI.MobileControls.ShippedAdapterSource
#else
namespace System.Web.UI.MobileControls.Adapters
#endif
{
/*
* MobileTextWriter class. All device-specific mobile text writers
* inherit from this class.
*
* Copyright (c) 2000 Microsoft Corporation
*/
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter"]/*' />
[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 MobileTextWriter : MultiPartWriter
{
private MobileCapabilities _device;
private MultiPartWriter _multiPartWriter;
private bool _partStarted = false;
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.Device"]/*' />
public MobileCapabilities Device
{
get
{
return _device;
}
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.MobileTextWriter"]/*' />
public MobileTextWriter(TextWriter writer, MobileCapabilities device) : base(writer)
{
_multiPartWriter = writer as MultiPartWriter;
_device = device;
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.EnterLayout"]/*' />
public virtual void EnterLayout(Style style)
{
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.ExitLayout"]/*' />
public virtual void ExitLayout(Style style, bool breakAfter)
{
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.ExitLayout1"]/*' />
public virtual void ExitLayout(Style style)
{
ExitLayout(style, false);
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.EnterFormat"]/*' />
public virtual void EnterFormat(Style style)
{
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.ExitFormat"]/*' />
public virtual void ExitFormat(Style style)
{
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.ExitFormat1"]/*' />
public virtual void ExitFormat(Style style, bool breakAfter)
{
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.EnterStyle"]/*' />
public void EnterStyle(Style style)
{
EnterLayout(style);
EnterFormat(style);
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.ExitStyle"]/*' />
public void ExitStyle(Style style)
{
ExitFormat(style);
ExitLayout(style);
}
/////////////////////////////////////////////////////////////////////////
// MultiPartWriter implementation. The MobileTextWriter class itself
// does not support multipart writing, unless it is wrapped on top
// of another writer that does.
/////////////////////////////////////////////////////////////////////////
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.SupportsMultiPart"]/*' />
public override bool SupportsMultiPart
{
get
{
return _multiPartWriter != null && _multiPartWriter.SupportsMultiPart;
}
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.BeginResponse"]/*' />
public override void BeginResponse()
{
if (_multiPartWriter != null)
{
_multiPartWriter.BeginResponse();
}
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.EndResponse"]/*' />
public override void EndResponse()
{
if (_multiPartWriter != null)
{
_multiPartWriter.EndResponse();
}
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.BeginFile"]/*' />
public override void BeginFile(String url, String contentType, String charset)
{
if (_multiPartWriter != null)
{
_multiPartWriter.BeginFile(url, contentType, charset);
}
else if (_partStarted)
{
throw new Exception(SR.GetString(SR.MobileTextWriterNotMultiPart));
}
else
{
if (contentType != null && contentType.Length > 0)
{
HttpContext.Current.Response.ContentType = contentType;
}
_partStarted = true;
}
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.EndFile"]/*' />
public override void EndFile()
{
if (_multiPartWriter != null)
{
_multiPartWriter.EndFile();
}
}
/// <include file='doc\MobileTextWriter.uex' path='docs/doc[@for="MobileTextWriter.AddResource"]/*' />
public override void AddResource(String url, String contentType)
{
if (_multiPartWriter != null)
{
_multiPartWriter.AddResource(url, contentType);
}
}
}
}
|