XhtmlTextWriter コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
XhtmlTextWriter クラスの新しいインスタンスを初期化します。
オーバーロード
XhtmlTextWriter(TextWriter) |
XhtmlTextWriter フィールドに指定されている行インデントを使用する、DefaultTabString クラスの新しいインスタンスを初期化します。 既定の行インデントを変更しない場合に XhtmlTextWriter(TextWriter) コンストラクターを使用します。 |
XhtmlTextWriter(TextWriter, String) |
指定した行インデントを使用して XhtmlTextWriter クラスの新しいインスタンスを初期化します。 |
XhtmlTextWriter(TextWriter)
XhtmlTextWriter フィールドに指定されている行インデントを使用する、DefaultTabString クラスの新しいインスタンスを初期化します。 既定の行インデントを変更しない場合に XhtmlTextWriter(TextWriter) コンストラクターを使用します。
public:
XhtmlTextWriter(System::IO::TextWriter ^ writer);
public XhtmlTextWriter (System.IO.TextWriter writer);
new System.Web.UI.XhtmlTextWriter : System.IO.TextWriter -> System.Web.UI.XhtmlTextWriter
Public Sub New (writer As TextWriter)
パラメーター
- writer
- TextWriter
XHTML コンテンツをレンダリングする TextWriter インスタンス。
例
次のコード例では、 クラスから派生したカスタム クラスに対して、クラスから HtmlTextWriter 直接または間接的に派生するすべてのクラスの標準である 2 つのコンストラクターを作成する方法を XhtmlTextWriter 示します。
// Create a class that inherits from XhtmlTextWriter.
[AspNetHostingPermission(SecurityAction.Demand,
Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand,
Level=AspNetHostingPermissionLevel.Minimal)]
public class CustomXhtmlTextWriter : XhtmlTextWriter
{
// Create two constructors, following
// the pattern for implementing a
// TextWriter constructor.
public CustomXhtmlTextWriter(TextWriter writer) :
this(writer, DefaultTabString)
{
}
public CustomXhtmlTextWriter(TextWriter writer, string tabString) :
base(writer, tabString)
{
}
' Create a class that inherits from XhtmlTextWriter.
<AspNetHostingPermission(SecurityAction.Demand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
<AspNetHostingPermission(SecurityAction.InheritanceDemand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
Public Class CustomXhtmlTextWriter
Inherits XhtmlTextWriter
' Create two constructors, following
' the pattern for implementing a
' TextWriter constructor.
Public Sub New(writer As TextWriter)
MyClass.New(writer, DefaultTabString)
End Sub
Public Sub New(writer As TextWriter, tabString As String)
MyBase.New(writer, tabString)
End Sub
注釈
オブジェクトをTextWriterパラメーターとして受け取るコンストラクターはXhtmlTextWriter、2 番目のコンストラクターを呼び出し、2 つのパラメーター値を渡します。
TextWriter インスタンス。
XHTML テキスト ライターによって使用されるタブ間隔を DefaultTabString 定義する、フィールドで指定される文字列値。
適用対象
XhtmlTextWriter(TextWriter, String)
指定した行インデントを使用して XhtmlTextWriter クラスの新しいインスタンスを初期化します。
public:
XhtmlTextWriter(System::IO::TextWriter ^ writer, System::String ^ tabString);
public XhtmlTextWriter (System.IO.TextWriter writer, string tabString);
new System.Web.UI.XhtmlTextWriter : System.IO.TextWriter * string -> System.Web.UI.XhtmlTextWriter
Public Sub New (writer As TextWriter, tabString As String)
パラメーター
- writer
- TextWriter
XHTML コンテンツをレンダリングする TextWriter インスタンス。
- tabString
- String
行のインデントをレンダリングする際に使用される文字列。
例
次のコード例では、 クラスから派生したカスタム クラスに対して、クラスから HtmlTextWriter 直接または間接的に派生するすべてのクラスの標準である 2 つのコンストラクターを作成する方法を XhtmlTextWriter 示します。
// Create a class that inherits from XhtmlTextWriter.
[AspNetHostingPermission(SecurityAction.Demand,
Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand,
Level=AspNetHostingPermissionLevel.Minimal)]
public class CustomXhtmlTextWriter : XhtmlTextWriter
{
// Create two constructors, following
// the pattern for implementing a
// TextWriter constructor.
public CustomXhtmlTextWriter(TextWriter writer) :
this(writer, DefaultTabString)
{
}
public CustomXhtmlTextWriter(TextWriter writer, string tabString) :
base(writer, tabString)
{
}
' Create a class that inherits from XhtmlTextWriter.
<AspNetHostingPermission(SecurityAction.Demand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
<AspNetHostingPermission(SecurityAction.InheritanceDemand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
Public Class CustomXhtmlTextWriter
Inherits XhtmlTextWriter
' Create two constructors, following
' the pattern for implementing a
' TextWriter constructor.
Public Sub New(writer As TextWriter)
MyClass.New(writer, DefaultTabString)
End Sub
Public Sub New(writer As TextWriter, tabString As String)
MyBase.New(writer, tabString)
End Sub
適用対象
.NET