HtmlTextWriter.RegisterAttribute(String, HtmlTextWriterAttribute) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
リテラルの、または動的に生成されたマークアップ属性をソース ファイルから登録して、これらの属性を要求側のクライアントに適切にレンダリングできるようにします。
protected:
static void RegisterAttribute(System::String ^ name, System::Web::UI::HtmlTextWriterAttribute key);
protected static void RegisterAttribute (string name, System.Web.UI.HtmlTextWriterAttribute key);
static member RegisterAttribute : string * System.Web.UI.HtmlTextWriterAttribute -> unit
Protected Shared Sub RegisterAttribute (name As String, key As HtmlTextWriterAttribute)
パラメーター
- name
- String
登録するマークアップ属性の名前を格納している文字列。
属性名に対応する HtmlTextWriterAttribute。
注釈
HTML マークアップ言語の定義済みの属性は、最初HtmlTextWriterのオブジェクトの作成時に メソッドのRegisterAttribute呼び出しによって登録されます。 動的属性は、 メソッドを使用 RegisterAttribute して登録することもできます。
メソッドで RegisterAttribute 使用される登録テーブルは であるため、属性の登録は static
ホスト コンピューター上のすべての HtmlTextWriter オブジェクトに適用されます。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET