ChtmlTextWriter 类

定义

向 ASP.NET 服务器控件的输出流写入一系列特定于 cHTML 的字符和文本。Writes a series of cHTML-specific characters and text to the output stream of an ASP.NET server control. ChtmlTextWriter 类提供 ASP.NET 服务器控件在将 cHTML 内容呈现给客户端时所使用的格式化功能。The ChtmlTextWriter class provides formatting capabilities that ASP.NET server controls use when rendering cHTML content to clients.

public ref class ChtmlTextWriter : System::Web::UI::Html32TextWriter
public class ChtmlTextWriter : System.Web.UI.Html32TextWriter
type ChtmlTextWriter = class
    inherit Html32TextWriter
Public Class ChtmlTextWriter
Inherits Html32TextWriter
继承

示例

下面的代码示例演示如何创建一个 CustomChtmlTextWriter 从类派生的名为的类 ChtmlTextWriterThe following code example demonstrates how to create a class named CustomChtmlTextWriter that is derived from the ChtmlTextWriter class. 它创建两个构造函数并重写 OnAttributeRender 方法,以防止将 bgcolor 样式特性写入对象的输出流中 ChtmlTextWriterIt creates two constructors and overrides the OnAttributeRender method to prevent the bgcolor style attribute from being written to the output stream of the ChtmlTextWriter object. 它还将创建一个名为的类,该类 ChtmlCustomPageAdapter 定义一个方法,该方法 CreateCustomChtmlTextWriter 创建并返回 CustomChtmlTextWriter 类的实例。It also creates a class named ChtmlCustomPageAdapter that defines one method, CreateCustomChtmlTextWriter, which creates and returns an instance of the CustomChtmlTextWriter class. CustomChtmlTextWriter然后,会向具有使用 cHTML 标记的浏览器的设备呈现页面的 cHTML 内容。The CustomChtmlTextWriter then renders cHTML content for a page to devices with browsers that use cHTML markup.

// Create a class that derives from the
// ChtmlTextWriter class.
using System;
using System.IO;
using System.Web.UI;
using System.Web.UI.WebControls.Adapters;

namespace AspNet.Samples.CS
{
    public class CustomChtmlTextWriter : ChtmlTextWriter
    {
        // Create two constructors for the new
        // text writer.
        public CustomChtmlTextWriter(TextWriter writer) : base(writer, DefaultTabString)
        {
        }

        public CustomChtmlTextWriter(TextWriter writer, String tabString)
            : base(writer, tabString)
        {
        }
        
        // Override the OnAttributeRender method to
        // not render the bgcolor attribute, which is
        // not supported in CHTML.
        protected override bool OnAttributeRender(string name, string value, HtmlTextWriterAttribute key)
        {
            if (String.Equals("bgcolor", name))
            {
                return false;
            }
            
            // Call the ChtmlTextWriter version of the
            // the OnAttributeRender method.
            return base.OnAttributeRender(name, value, key);
        }
    }

    // Derive from the WebControlAdapter class,
    // provide a CreateCustomChtmlTextWriter
    // method to attach to the custom writer.
    public class ChtmlCustomPageAdapter : WebControlAdapter
    {
        protected internal ChtmlTextWriter CreateCustomChtmlTextWriter(
            TextWriter writer)
        {
            return new CustomChtmlTextWriter(writer);
        }
    }
}
' Create a class that derives from the
' ChtmlTextWriter class.
Imports System.IO
Imports System.Web.UI
Imports System.Web.UI.WebControls.Adapters

Namespace AspNet.Samples.VB

    Public Class CustomChtmlTextWriter
        Inherits ChtmlTextWriter

        ' Create two constructors for the new
        ' text writer.
        Public Sub New(ByVal writer As TextWriter)
            MyClass.New(writer, DefaultTabString)
        End Sub

        Public Sub New(ByVal writer As TextWriter, ByVal tabString As String)
            MyBase.New(writer, tabString)
        End Sub

        ' Override the OnAttributeRender method to
        ' not render the bgcolor attribute, which is 
        ' not supported in CHTML.
        Protected Overrides Function OnAttributeRender(ByVal name As String, ByVal value As String, ByVal key As HtmlTextWriterAttribute) As Boolean
            If (String.Equals("bgcolor", name)) Then
                Return False
            End If

            ' Call the ChtmlTextWriter version of 
            ' the OnAttributeRender method.
            MyBase.OnAttributeRender(name, value, key)

        End Function
    End Class

    ' Derive from the WebControlAdapter class,
    ' provide a CreateCustomChtmlTextWriter
    ' method to attach the custom writer.
    Public Class ChtmlCustomPageAdapter
        Inherits WebControlAdapter

        Protected Friend Function CreateCustomChtmlTextWriter( _
         ByVal writer As TextWriter) As ChtmlTextWriter

            Return New CustomChtmlTextWriter(writer)

        End Function
    End Class
End Namespace

注解

Compact HTML (即 cHTML)是 HTML 2.0、HTML 3.2 和 HTML 4.0 的子集,设计用于在内存和 CPU 能力有限的设备上进行呈现,还可以呈现少量的显示屏幕、有限的格式设置功能以及有限数量的输入选项 (如手机触控板) 。Compact HTML, or cHTML, is a subset of HTML 2.0, HTML 3.2, and HTML 4.0, and is designed to render on devices with limited memory and CPU power, along with small display screens, limited formatting capabilities, and a limited number of input options (such as a cell phone touch pad). 因此,cHTML 不支持以下功能:Therefore, cHTML does not support the following:

  • JPEG 图像。JPEG images.

  • 表。Tables.

  • 图像映射。Image maps.

  • 多字符字体和样式。Multiple character fonts and styles.

  • 背景颜色和图像。Background colors and images.

  • 文本框.Frames.

  • 样式表。Style sheets.

ChtmlTextWriter类派生自 Html32TextWriter 类,并且它的大部分功能由提供 Html32TextWriter ,所有标记文本编写器的基类( HtmlTextWriter 该类是类)。The ChtmlTextWriter class derives from the Html32TextWriter class and much of its functionality is provided by the Html32TextWriter and the base class for all markup text writers, which is the HtmlTextWriter class.

构造函数

ChtmlTextWriter(TextWriter)

初始化使用 ChtmlTextWriter 常数使行缩进的 DefaultTabString 类的新实例。Initializes a new instance of the ChtmlTextWriter class that uses the DefaultTabString constant to indent lines.

ChtmlTextWriter(TextWriter, String)

使用指定的行缩进初始化 ChtmlTextWriter 类的新实例。Initializes a new instance of the ChtmlTextWriter class with the specified line indentation.

字段

CoreNewLine

存储用于此 TextWriter 的换行符。Stores the newline characters used for this TextWriter.

(继承自 TextWriter)
DefaultTabString

表示单个制表符。Represents a single tab character.

(继承自 HtmlTextWriter)
DoubleQuoteChar

表示引号 (") 字符。Represents the quotation mark (") character.

(继承自 HtmlTextWriter)
EndTagLeftChars

表示标记元素结束标记的左尖括号和斜线 (</)。Represents the left angle bracket and slash mark (</) of the closing tag of a markup element.

(继承自 HtmlTextWriter)
EqualsChar

表示等号 (=)。Represents the equal sign (=).

(继承自 HtmlTextWriter)
EqualsDoubleQuoteString

表示字符串 (=") 中合并在一起的等号 (=) 和双引号 (")。Represents an equal sign (=) and a double quotation mark (") together in a string (=").

(继承自 HtmlTextWriter)
SelfClosingChars

表示空格和标记的自结束斜杠 (/)。Represents a space and the self-closing slash mark (/) of a markup tag.

(继承自 HtmlTextWriter)
SelfClosingTagEnd

表示自结束标记元素的右斜杠标记和右尖括号 (/>)。Represents the closing slash mark and right angle bracket (/>) of a self-closing markup element.

(继承自 HtmlTextWriter)
SemicolonChar

表示分号 (;)。Represents the semicolon (;).

(继承自 HtmlTextWriter)
SingleQuoteChar

表示撇号 (')。Represents an apostrophe (').

(继承自 HtmlTextWriter)
SlashChar

表示斜杠 (/)。Represents the slash mark (/).

(继承自 HtmlTextWriter)
SpaceChar

表示空格 ( ) 字符。Represents a space ( ) character.

(继承自 HtmlTextWriter)
StyleEqualsChar

表示用于将样式属性设置为等于值的样式等号 (:) 字符。Represents the style equals (:) character used to set style attributes equal to values.

(继承自 HtmlTextWriter)
TagLeftChar

表示标记标签的左尖括号 (<)。Represents the opening angle bracket (<) of a markup tag.

(继承自 HtmlTextWriter)
TagRightChar

表示标记标签的右尖括号 (>)。Represents the closing angle bracket (>) of a markup tag.

(继承自 HtmlTextWriter)

属性

Encoding

获取 HtmlTextWriter 对象用于将内容写入页面的编码。Gets the encoding that the HtmlTextWriter object uses to write content to the page.

(继承自 HtmlTextWriter)
FontStack

获取要呈现的 HTML 的字体信息的集合。Gets a collection of font information for the HTML to render.

(继承自 Html32TextWriter)
FormatProvider

获取控制格式设置的对象。Gets an object that controls formatting.

(继承自 TextWriter)
GlobalSuppressedAttributes

获取已全局取消的特性(无法在 cHTML 元素上呈现)的 Hashtable 对象。Gets a Hashtable object of globally suppressed attributes that cannot be rendered on cHTML elements.

Indent

获取或设置用以缩进每一行标记的开始位置的制表符位置数。Gets or sets the number of tab positions to indent the beginning of each line of markup.

(继承自 HtmlTextWriter)
InnerWriter

获取或设置写入标记元素内部内容的文本编写器。Gets or sets the text writer that writes the inner content of the markup element.

(继承自 HtmlTextWriter)
NewLine

获取或设置 HtmlTextWriter 对象使用的行结束符字符串。Gets or sets the line terminator string used by the HtmlTextWriter object.

(继承自 HtmlTextWriter)
RecognizedAttributes

获取可识别特性(可以在 cHTML 元素上呈现)的 Hashtable 对象。Gets a Hashtable object of recognized attributes that could be rendered on cHTML elements.

ShouldPerformDivTableSubstitution

获取或设置一个布尔值,该值指示是否用 Table 元素替换 Div 元素以减少呈现 HTML 块所花费的时间。Gets or sets a Boolean value indicating whether to replace a Table element with a Div element to reduce the time that it takes to render a block of HTML.

(继承自 Html32TextWriter)
SupportsBold

获取或设置一个布尔值,该值指示请求设备是否支持粗体 HTML 文本。Gets or sets a Boolean value indicating whether the requesting device supports bold HTML text. 使用 SupportsBold 属性按条件向 Html32TextWriter 输出流呈现粗体文本。Use the SupportsBold property to conditionally render bold text to the Html32TextWriter output stream.

(继承自 Html32TextWriter)
SupportsItalic

获取或设置一个布尔值,该值指示请求设备是否支持斜体 HTML 文本。Gets or sets a Boolean value indicating whether the requesting device supports italic HTML text. 使用 SupportsItalic 属性按条件向 Html32TextWriter 输出流呈现斜体文本。Use the SupportsItalic property to conditionally render italicized text to the Html32TextWriter output stream.

(继承自 Html32TextWriter)
SuppressedAttributes

获取用户指定的已取消的特性(无法在 cHTML 元素上呈现)的 Hashtable 对象。Gets a Hashtable object of user-specified suppressed attributes that are not rendered on cHTML elements.

TagKey

获取或设置指定标记元素的 HtmlTextWriterTag 值。Gets or sets the HtmlTextWriterTag value for the specified markup element.

(继承自 HtmlTextWriter)
TagName

获取或设置所呈现的标记元素的标记名称。Gets or sets the tag name of the markup element being rendered.

(继承自 HtmlTextWriter)

方法

AddAttribute(HtmlTextWriterAttribute, String)

将标记属性和属性值添加到 HtmlTextWriter 对象创建的元素的开始标记,随后调用 RenderBeginTag 方法。Adds the markup attribute and the attribute value to the opening tag of the element that the HtmlTextWriter object creates with a subsequent call to the RenderBeginTag method.

(继承自 HtmlTextWriter)
AddAttribute(HtmlTextWriterAttribute, String, Boolean)

将标记属性和属性值添加到 HtmlTextWriter 对象创建的元素的开始标记中,随后使用可选编码调用 RenderBeginTag 方法。Adds the markup attribute and the attribute value to the opening tag of the element that the HtmlTextWriter object creates with a subsequent call to the RenderBeginTag method, with optional encoding.

(继承自 HtmlTextWriter)
AddAttribute(String, String)

将指定的标记属性和值添加到 HtmlTextWriter 对象创建的元素的开始标记,随后调用 RenderBeginTag 方法。Adds the specified markup attribute and value to the opening tag of the element that the HtmlTextWriter object creates with a subsequent call to the RenderBeginTag method.

(继承自 HtmlTextWriter)
AddAttribute(String, String, Boolean)

将指定的标记属性和值添加到 HtmlTextWriter 对象创建的元素的开始标记,随后使用可选编码调用 RenderBeginTag 方法。Adds the specified markup attribute and value to the opening tag of the element that the HtmlTextWriter object creates with a subsequent call to the RenderBeginTag method, with optional encoding.

(继承自 HtmlTextWriter)
AddAttribute(String, String, HtmlTextWriterAttribute)

将指定的标记属性、值以及 HtmlTextWriterAttribute 枚举值添加到 HtmlTextWriter 对象创建的元素的开始标记,随后调用 RenderBeginTag 方法。Adds the specified markup attribute and value, along with an HtmlTextWriterAttribute enumeration value, to the opening tag of the element that the HtmlTextWriter object creates with a subsequent call to the RenderBeginTag method.

(继承自 HtmlTextWriter)
AddRecognizedAttribute(String, String)

将一个特性添加到 ChtmlTextWriter 对象的 cHTML 元素。Adds an attribute to a cHTML element of the ChtmlTextWriter object.

AddStyleAttribute(HtmlTextWriterStyle, String)

对于通过对 HtmlTextWriterStyle 方法的后续调用而创建的开始标记,向其中添加与指定的 RenderBeginTag 值相关联的标记样式属性和属性值。Adds the markup style attribute associated with the specified HtmlTextWriterStyle value and the attribute value to the opening markup tag created by a subsequent call to the RenderBeginTag method.

(继承自 HtmlTextWriter)
AddStyleAttribute(String, String)

对于通过对 RenderBeginTag 方法的后续调用创建的开始标记,向其中添加指定的标记样式属性和属性值。Adds the specified markup style attribute and the attribute value to the opening markup tag created by a subsequent call to the RenderBeginTag method.

(继承自 HtmlTextWriter)
AddStyleAttribute(String, String, HtmlTextWriterStyle)

对于通过对 HtmlTextWriterStyle 方法的后续调用而创建的开始标记,向其中添加指定的标记样式属和属性值以及 RenderBeginTag 枚举值。Adds the specified markup style attribute and the attribute value, along with an HtmlTextWriterStyle enumeration value, to the opening markup tag created by a subsequent call to the RenderBeginTag method.

(继承自 HtmlTextWriter)
BeginRender()

通知 HtmlTextWriter 对象或派生类的对象,将会呈现某个控件。Notifies an HtmlTextWriter object, or an object of a derived class, that a control is about to be rendered.

(继承自 HtmlTextWriter)
Close()

关闭 HtmlTextWriter 对象并释放与之关联的所有系统资源。Closes the HtmlTextWriter object and releases any system resources associated with it.

(继承自 HtmlTextWriter)
CreateObjRef(Type)

创建一个对象,该对象包含生成用于与远程对象进行通信的代理所需的全部相关信息。Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.

(继承自 MarshalByRefObject)
Dispose()

释放由 TextWriter 对象使用的所有资源。Releases all resources used by the TextWriter object.

(继承自 TextWriter)
Dispose(Boolean)

释放由 TextWriter 占用的非托管资源,还可以另外再释放托管资源。Releases the unmanaged resources used by the TextWriter and optionally releases the managed resources.

(继承自 TextWriter)
DisposeAsync()

异步释放由 TextWriter 对象使用的所有资源。Asynchronously releases all resources used by the TextWriter object.

(继承自 TextWriter)
EncodeAttributeValue(HtmlTextWriterAttribute, String)

根据当前上下文的 HttpRequest 对象的要求,对指定标记特性的值进行编码。Encodes the value of the specified markup attribute based on the requirements of the HttpRequest object of the current context.

(继承自 HtmlTextWriter)
EncodeAttributeValue(String, Boolean)

根据当前上下文的 HttpRequest 对象的要求,对指定标记特性的值进行编码。Encodes the value of the specified markup attribute based on the requirements of the HttpRequest object of the current context.

(继承自 HtmlTextWriter)
EncodeUrl(String)

通过将指定的 URL 中的空格转换为字符串“%20”,以执行最小 URL 编码。Performs minimal URL encoding by converting spaces in the specified URL to the string "%20".

(继承自 HtmlTextWriter)
EndRender()

通知 HtmlTextWriter 对象或某个派生类的对象,某控件已完成呈现。Notifies an HtmlTextWriter object, or an object of a derived class, that a control has finished rendering. 可使用此方法关闭在 BeginRender() 方法中打开的任何标记元素。You can use this method to close any markup elements opened in the BeginRender() method.

(继承自 HtmlTextWriter)
EnterStyle(Style)

写入 <span> 元素的开始标记,该元素包含实现指定样式的布局和字符格式化的属性。Writes the opening tag of a <span> element that contains attributes that implement the layout and character formatting of the specified style.

(继承自 HtmlTextWriter)
EnterStyle(Style, HtmlTextWriterTag)

写入标记元素的开始标记,该标记元素包含实现指定样式布局和字符格式化的属性。Writes the opening tag of a markup element that contains attributes that implement the layout and character formatting of the specified style.

(继承自 HtmlTextWriter)
Equals(Object)

确定指定对象是否等于当前对象。Determines whether the specified object is equal to the current object.

(继承自 Object)
ExitStyle(Style)

写入 <span> 元素的结束标记以结束指定的布局和字符格式设置。Writes the closing tag of a <span> element to end the specified layout and character formatting.

(继承自 HtmlTextWriter)
ExitStyle(Style, HtmlTextWriterTag)

写入指定的标记元素的结束标记,以结束指定的布局和字符格式。Writes the closing tag of the specified markup element to end the specified layout and character formatting.

(继承自 HtmlTextWriter)
FilterAttributes()

移除页面或 Web 服务器控件的所有属性上的所有标记和样式属性。Removes all the markup and style attributes on all properties of the page or Web server control.

(继承自 HtmlTextWriter)
Flush()

清理当前 HtmlTextWriter 对象的所有缓冲区并使所有缓冲数据写入到输出流。Clears all buffers for the current HtmlTextWriter object and causes any buffered data to be written to the output stream.

(继承自 HtmlTextWriter)
FlushAsync()

异步清理当前编写器的所有缓冲区,使所有缓冲数据写入基础设备。Asynchronously clears all buffers for the current writer and causes any buffered data to be written to the underlying device.

(继承自 TextWriter)
GetAttributeKey(String)

获取指定属性的相应 HtmlTextWriterAttribute 枚举值。Obtains the corresponding HtmlTextWriterAttribute enumeration value for the specified attribute.

(继承自 HtmlTextWriter)
GetAttributeName(HtmlTextWriterAttribute)

获取与指定的 HtmlTextWriterAttribute 值关联的标记属性名称。Obtains the name of the markup attribute associated with the specified HtmlTextWriterAttribute value.

(继承自 HtmlTextWriter)
GetHashCode()

作为默认哈希函数。Serves as the default hash function.

(继承自 Object)
GetLifetimeService()
已过时。

检索控制此实例的生存期策略的当前生存期服务对象。Retrieves the current lifetime service object that controls the lifetime policy for this instance.

(继承自 MarshalByRefObject)
GetStyleKey(String)

获取指定样式的 HtmlTextWriterStyle 枚举值。Obtains the HtmlTextWriterStyle enumeration value for the specified style.

(继承自 HtmlTextWriter)
GetStyleName(HtmlTextWriterStyle)

获取与指定的 HtmlTextWriterStyle 枚举值关联的标记样式属性名称。Obtains the markup style attribute name associated with the specified HtmlTextWriterStyle enumeration value.

(继承自 HtmlTextWriter)
GetTagKey(String)

获取与指定标记元素关联的 HtmlTextWriterTag 枚举值。Obtains the HtmlTextWriterTag enumeration value associated with the specified markup element.

(继承自 HtmlTextWriter)
GetTagName(HtmlTextWriterTag)

返回与指定的 HtmlTextWriterTag 枚举值相关联的 HTML 元素。Returns the HTML element that is associated with the specified HtmlTextWriterTag enumeration value.

(继承自 Html32TextWriter)
GetType()

获取当前实例的 TypeGets the Type of the current instance.

(继承自 Object)
InitializeLifetimeService()
已过时。

获取生存期服务对象来控制此实例的生存期策略。Obtains a lifetime service object to control the lifetime policy for this instance.

(继承自 MarshalByRefObject)
IsAttributeDefined(HtmlTextWriterAttribute)

确定是否在下一次调用 RenderBeginTag 方法时呈现指定的标记属性及其值。Determines whether the specified markup attribute and its value are rendered during the next call to the RenderBeginTag method.

(继承自 HtmlTextWriter)
IsAttributeDefined(HtmlTextWriterAttribute, String)

确定是否在下一次调用 RenderBeginTag 方法时呈现指定的标记属性及其值。Determines whether the specified markup attribute and its value are rendered during the next call to the RenderBeginTag method.

(继承自 HtmlTextWriter)
IsStyleAttributeDefined(HtmlTextWriterStyle)

确定下次调用 RenderBeginTag 方法时指定的标记样式属性是否呈现。Determines whether the specified markup style attribute is rendered during the next call to the RenderBeginTag method.

(继承自 HtmlTextWriter)
IsStyleAttributeDefined(HtmlTextWriterStyle, String)

确定下次调用 RenderBeginTag 方法时是否呈现指定的标记样式属性及其值。Determines whether the specified markup style attribute and its value are rendered during the next call to the RenderBeginTag method.

(继承自 HtmlTextWriter)
IsValidFormAttribute(String)

检查属性,确保它可以在 <form> 标记元素的开始标记中呈现。Checks an attribute to ensure that it can be rendered in the opening tag of a <form> markup element.

(继承自 HtmlTextWriter)
MemberwiseClone()

创建当前 Object 的浅表副本。Creates a shallow copy of the current Object.

(继承自 Object)
MemberwiseClone(Boolean)

创建当前 MarshalByRefObject 对象的浅表副本。Creates a shallow copy of the current MarshalByRefObject object.

(继承自 MarshalByRefObject)
OnAttributeRender(String, String, HtmlTextWriterAttribute)

确定指定的 cHTML 特性及其值是否将呈现给请求页。Determines whether the specified cHTML attribute and its value are rendered to the requesting page. 可以在从 OnAttributeRender(String, String, HtmlTextWriterAttribute) 类派生的类中重写 ChtmlTextWriter 方法,以筛选出不希望在支持 cHTML 的设备上呈现的特性。You can override the OnAttributeRender(String, String, HtmlTextWriterAttribute) method in classes that derive from the ChtmlTextWriter class to filter out attributes that you do not want to render on devices that support cHTML.

OnStyleAttributeRender(String, String, HtmlTextWriterStyle)

确定是否可以向当前标记元素呈现指定的 cHTML 标记样式特性及其值。Determines whether the specified cHTML markup style attribute and its value can be rendered to the current markup element.

OnTagRender(String, HtmlTextWriterTag)

确定指定的 cHTML 标记元素是否将呈现给请求页。Determines whether the specified cHTML markup element is rendered to the requesting page.

OutputTabs()

写入一连串用以表示标记字符行的缩进级别的制表符字符串。Writes a series of tab strings that represent the indentation level for a line of markup characters.

(继承自 HtmlTextWriter)
PopEndTag()

从呈现的元素列表中移除最近保存的标记元素。Removes the most recently saved markup element from the list of rendered elements.

(继承自 HtmlTextWriter)
PushEndTag(String)

为标记元素生成结束标记时,保存指定的标记元素供以后使用。Saves the specified markup element for later use when generating the end tag for a markup element.

(继承自 HtmlTextWriter)
RemoveRecognizedAttribute(String, String)

移除 ChtmlTextWriter 对象的 cHTML 元素的特性。Removes an attribute of a cHTML element of the ChtmlTextWriter object.

RenderAfterContent()

写入在 HTML 元素内容之后出现的所有文本或间距。Writes any text or spacing that appears after the content of the HTML element.

(继承自 Html32TextWriter)
RenderAfterTag()

写出任何在 HTML 元素的结束标记之后出现的间距或文本。Writes any spacing or text that occurs after an HTML element's closing tag.

(继承自 Html32TextWriter)
RenderBeforeContent()

写入在 HTML 元素中包含的内容之前出现的所有制表符间距或字体信息。Writes any tab spacing or font information that appears before the content that is contained in an HTML element.

(继承自 Html32TextWriter)
RenderBeforeTag()

将在 HTML 元素的开始标记之前出现的所有文本或制表符间距写入 HTML 3.2 输出流。Writes any text or tab spacing that occurs before the opening tag of an HTML element to the HTML 3.2 output stream.

(继承自 Html32TextWriter)
RenderBeginTag(HtmlTextWriterTag)

将指定元素的开始标记写入 HTML 3.2 输出流。Writes the opening tag of the specified element to the HTML 3.2 output stream.

(继承自 Html32TextWriter)
RenderBeginTag(String)

将指定标记元素的开始标记写入输出流。Writes the opening tag of the specified markup element to the output stream.

(继承自 HtmlTextWriter)
RenderEndTag()

将 HTML 元素的结束标记连同与此元素关联的所有字体信息写入 Html32TextWriter 输出流。Writes the end tag of an HTML element to the Html32TextWriter output stream, along with any font information that is associated with the element.

(继承自 Html32TextWriter)
ToString()

返回表示当前对象的字符串。Returns a string that represents the current object.

(继承自 Object)
Write(Boolean)

将布尔值的文本表示形式和任何挂起的制表符间距一起写入到输出流。Writes the text representation of a Boolean value to the output stream, along with any pending tab spacing.

(继承自 HtmlTextWriter)
Write(Char)

将 Unicode 字符的文本表示形式和任何挂起的制表符间距一起写入到输出流。Writes the text representation of a Unicode character to the output stream, along with any pending tab spacing.

(继承自 HtmlTextWriter)
Write(Char[])

将 Unicode 字符数组的文本表示形式和任何挂起的制表符间距一起写入到输出流。Writes the text representation of an array of Unicode characters to the output stream, along with any pending tab spacing.

(继承自 HtmlTextWriter)
Write(Char[], Int32, Int32)

将 Unicode 字符子数组的文本表示形式和任何挂起的制表符间距一起写入到输出流。Writes the text representation of a subarray of Unicode characters to the output stream, along with any pending tab spacing.

(继承自 HtmlTextWriter)
Write(Decimal)

将小数值的文本表示形式写入文本流。Writes the text representation of a decimal value to the text stream.

(继承自 TextWriter)
Write(Double)

将双精度浮点数的文本表示形式和任何挂起的制表符间距一起写入到输出流。Writes the text representation of a double-precision floating-point number to the output stream, along with any pending tab spacing.

(继承自 HtmlTextWriter)
Write(Int32)

将 32 字节的带符号整数的文本表示形式和任何挂起的制表符间距一起写入到输出流。Writes the text representation of a 32-byte signed integer to the output stream, along with any pending tab spacing.

(继承自 HtmlTextWriter)
Write(Int64)

将 64 字节的带符号整数的文本表示形式和任何挂起的制表符间距一起写入到输出流。Writes the text representation of a 64-byte signed integer to the output stream, along with any pending tab spacing.

(继承自 HtmlTextWriter)
Write(Object)

将对象的文本表示形式和任何挂起的制表符间距一起写入到输出流。Writes the text representation of an object to the output stream, along with any pending tab spacing.

(继承自 HtmlTextWriter)
Write(ReadOnlySpan<Char>)

将字符范围写入文本流。Writes a character span to the text stream.

(继承自 TextWriter)
Write(Single)

将单精度浮点数的文本表示形式和任何挂起的制表符间距一起写入到输出流。Writes the text representation of a single-precision floating-point number to the output stream, along with any pending tab spacing.

(继承自 HtmlTextWriter)
Write(String)

将指定的字符串和任何挂起的制表符间距一起写入到输出流。Writes the specified string to the output stream, along with any pending tab spacing.

(继承自 HtmlTextWriter)
Write(String, Object)

使用与 Format(String, Object) 方法相同的语义,将一个制表符字符串和一个格式化字符串连同任何挂起的制表符间距一起写入到输出流。Writes a tab string and a formatted string to the output stream, using the same semantics as the Format(String, Object) method, along with any pending tab spacing.

(继承自 HtmlTextWriter)
Write(String, Object, Object)

将包含两个对象的文本表示形式的格式化字符串和任何挂起的制表符间距一起写入到输出流。Writes a formatted string that contains the text representation of two objects to the output stream, along with any pending tab spacing. 该方法使用与 Format(String, Object, Object) 方法相同的语义。This method uses the same semantics as the Format(String, Object, Object) method.

(继承自 HtmlTextWriter)
Write(String, Object, Object, Object)

使用与 Format(String, Object, Object, Object) 方法相同的语义将格式化字符串写入文本流。Writes a formatted string to the text stream, using the same semantics as the Format(String, Object, Object, Object) method.

(继承自 TextWriter)
Write(String, Object[])

将包含某对象数组的文本表示形式的格式化字符串和任何挂起的制表符间距一起写入到输出流。Writes a formatted string that contains the text representation of an object array to the output stream, along with any pending tab spacing. 该方法使用与 Format(String, Object[]) 方法相同的语义。This method uses the same semantics as the Format(String, Object[]) method.

(继承自 HtmlTextWriter)
Write(StringBuilder)

将字符串生成器写入文本流。Writes a string builder to the text stream.

(继承自 TextWriter)
Write(UInt32)

将 4 字节无符号整数的文本表示形式写入文本流。Writes the text representation of a 4-byte unsigned integer to the text stream.

(继承自 TextWriter)
Write(UInt64)

将 8 字节无符号整数的文本表示形式写入文本流。Writes the text representation of an 8-byte unsigned integer to the text stream.

(继承自 TextWriter)
WriteAsync(Char)

将字符异步写入文本流。Writes a character to the text stream asynchronously.

(继承自 TextWriter)
WriteAsync(Char[])

将字符数组异步写入文本流。Writes a character array to the text stream asynchronously.

(继承自 TextWriter)
WriteAsync(Char[], Int32, Int32)

以异步形式将字符的子数组写入文本流。Writes a subarray of characters to the text stream asynchronously.

(继承自 TextWriter)
WriteAsync(ReadOnlyMemory<Char>, CancellationToken)

以异步形式将字符内存区域写入文本流。Asynchronously writes a character memory region to the text stream.

(继承自 TextWriter)
WriteAsync(String)

将字符串异步写入文本流。Writes a string to the text stream asynchronously.

(继承自 TextWriter)
WriteAsync(StringBuilder, CancellationToken)

以异步形式将字符串生成器写入文本流。Asynchronously writes a string builder to the text stream.

(继承自 TextWriter)
WriteAttribute(String, String)

将指定的标记属性和值写入到输出流。Writes the specified markup attribute and value to the output stream.

(继承自 HtmlTextWriter)
WriteAttribute(String, String, Boolean)

将指定标记特性和值写入输出流,并且(如果指定)写入经过编码的值。Writes the specified markup attribute and value to the output stream, and, if specified, writes the value encoded.

(继承自 HtmlTextWriter)
WriteBeginTag(String)

将任何制表符间距和指定标记元素的开始标记写入到输出流。Writes any tab spacing and the opening tag of the specified markup element to the output stream.

(继承自 HtmlTextWriter)
WriteBreak()

br 元素写入 cHTML 输出流。Writes a br element to the cHTML output stream.

WriteEncodedText(String)

对请求设备的指定文本进行编码,然后将其写入到输出流。Encodes the specified text for the requesting device, and then writes it to the output stream.

WriteEncodedUrl(String)

对指定的 URL 进行编码,然后将它写入到输出流。Encodes the specified URL, and then writes it to the output stream. URL 可以包括参数。The URL might include parameters.

(继承自 HtmlTextWriter)
WriteEncodedUrlParameter(String)

对请求的设备的指定 URL 参数进行编码,然后将它写入到输出流。Encodes the specified URL parameter for the requesting device, and then writes it to the output stream.

(继承自 HtmlTextWriter)
WriteEndTag(String)

写入指定标记元素的任何制表符间距和结束标记。Writes any tab spacing and the closing tag of the specified markup element.

(继承自 HtmlTextWriter)
WriteFullBeginTag(String)

将任何制表符间距和指定标记元素的开始标记写入到输出流。Writes any tab spacing and the opening tag of the specified markup element to the output stream.

(继承自 HtmlTextWriter)
WriteLine()

将行结束符字符串写入到输出流。Writes a line terminator string to the output stream.

(继承自 HtmlTextWriter)
WriteLine(Boolean)

将任何挂起的制表符间距和一个布尔值的文本表示形式写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and the text representation of a Boolean value, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(Char)

将任何挂起的制表符间距和一个 Unicode 字符写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and a Unicode character, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(Char[])

将任何挂起的制表符间距和一个 Unicode 字符数组写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and an array of Unicode characters, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(Char[], Int32, Int32)

将任何挂起的制表符间距和一个 Unicode 字符子数组写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and a subarray of Unicode characters, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(Decimal)

将小数值的文本表示形式写入文本流,后跟行终止符。Writes the text representation of a decimal value to the text stream, followed by a line terminator.

(继承自 TextWriter)
WriteLine(Double)

将任何挂起的制表符间距和一个双精度浮点数的文本表示形式写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and the text representation of a double-precision floating-point number, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(Int32)

将任何挂起的制表符间距和一个 32 字节有符号整数的文本表示形式写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and the text representation of a 32-byte signed integer, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(Int64)

将任何挂起的制表符间距和一个 64 字节有符号整数的文本表示形式写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and the text representation of a 64-byte signed integer, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(Object)

将任何挂起的制表符间距和一个对象的文本表示形式写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and the text representation of an object, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(ReadOnlySpan<Char>)

将字符范围的文本表示形式写入文本流,后跟行终止符。Writes the text representation of a character span to the text stream, followed by a line terminator.

(继承自 TextWriter)
WriteLine(Single)

将任何挂起的制表符间距和一个单精度浮点数的文本表示形式写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and the text representation of a single-precision floating-point number, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(String)

将任何挂起的制表符间距和一个文本字符串写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and a text string, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(String, Object)

将任何挂起的制表符间距和一个包含一个对象的文本表示形式的格式化字符串写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and a formatted string containing the text representation of an object, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(String, Object, Object)

将任何挂起的制表符间距和包含两个对象的文本表示形式的格式化字符串写入到输出流,并在后面跟上行结束符字符串。Writes any pending tab spacing and a formatted string that contains the text representation of two objects, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(String, Object, Object, Object)

使用与 Format(String, Object) 相同的语义将格式化字符串和新行写入文本流。Writes out a formatted string and a new line to the text stream, using the same semantics as Format(String, Object).

(继承自 TextWriter)
WriteLine(String, Object[])

将任何挂起的制表符间距和一个包含对象数组的文本表示形式的格式化字符串写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and a formatted string that contains the text representation of an object array, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(StringBuilder)

将字符串生成器的文本表示形式写入文本流,后跟行终止符。Writes the text representation of a string builder to the text stream, followed by a line terminator.

(继承自 TextWriter)
WriteLine(UInt32)

将任何挂起的制表符间距和一个 4 字节无符号整数的文本表示形式写入到输出流,并在后面跟上一个行结束符字符串。Writes any pending tab spacing and the text representation of a 4-byte unsigned integer, followed by a line terminator string, to the output stream.

(继承自 HtmlTextWriter)
WriteLine(UInt64)

将 8 字节无符号整数的文本表示形式写入文本流,后跟行终止符。Writes the text representation of an 8-byte unsigned integer to the text stream, followed by a line terminator.

(继承自 TextWriter)
WriteLineAsync()

以异步形式将行终止符写入文本流。Asynchronously writes a line terminator to the text stream.

(继承自 TextWriter)
WriteLineAsync(Char)

以异步形式将字符写入文本流,后跟行终止符。Asynchronously writes a character to the text stream, followed by a line terminator.

(继承自 TextWriter)
WriteLineAsync(Char[])

以异步形式将字符数组写入文本流,后跟行终止符。Asynchronously writes an array of characters to the text stream, followed by a line terminator.

(继承自 TextWriter)
WriteLineAsync(Char[], Int32, Int32)

以异步形式将字符子数组写入文本流,后跟行终止符。Asynchronously writes a subarray of characters to the text stream, followed by a line terminator.

(继承自 TextWriter)
WriteLineAsync(ReadOnlyMemory<Char>, CancellationToken)

以异步形式将字符内存区域的文本表示形式写入文本流,后跟行终止符。Asynchronously writes the text representation of a character memory region to the text stream, followed by a line terminator.

(继承自 TextWriter)
WriteLineAsync(String)

以异步形式将字符串写入文本流,后跟行终止符。Asynchronously writes a string to the text stream, followed by a line terminator.

(继承自 TextWriter)
WriteLineAsync(StringBuilder, CancellationToken)

以异步形式将字符串生成器的文本表示形式写入文本流,后跟行终止符。Asynchronously writes the text representation of a string builder to the text stream, followed by a line terminator.

(继承自 TextWriter)
WriteLineNoTabs(String)

将一个字符串写入到输出流,并在后面跟上一个行结束符字符串。Writes a string, followed by a line terminator string, to the output stream. 此方法忽略任何指定的制表符间距。This method ignores any specified tab spacing.

(继承自 HtmlTextWriter)
WriteStyleAttribute(String, String)

将指定的样式属性写入到输出流。Writes the specified style attribute to the output stream.

(继承自 HtmlTextWriter)
WriteStyleAttribute(String, String, Boolean)

将指定的样式特性和值写入到输出流,如果指定了值,则还要对值进行编码。Writes the specified style attribute and value to the output stream, and encodes the value, if specified.

(继承自 HtmlTextWriter)
WriteUrlEncodedString(String, Boolean)

写入指定的字符串,并根据 URL 要求对它进行编码。Writes the specified string, encoding it according to URL requirements.

(继承自 HtmlTextWriter)

显式接口实现

IDisposable.Dispose()

有关此成员的说明,请参见 Dispose()For a description of this member, see Dispose().

(继承自 TextWriter)

适用于

另请参阅