次の方法で共有


TagHelperContext コンストラクター

定義

オーバーロード

TagHelperContext(TagHelperAttributeList, IDictionary<Object,Object>, String)

新しい TagHelperContext をインスタンス化します。

TagHelperContext(String, TagHelperAttributeList, IDictionary<Object,Object>, String)

新しい TagHelperContext をインスタンス化します。

TagHelperContext(TagHelperAttributeList, IDictionary<Object,Object>, String)

ソース:
TagHelperContext.cs
ソース:
TagHelperContext.cs

新しい TagHelperContext をインスタンス化します。

public:
 TagHelperContext(Microsoft::AspNetCore::Razor::TagHelpers::TagHelperAttributeList ^ allAttributes, System::Collections::Generic::IDictionary<System::Object ^, System::Object ^> ^ items, System::String ^ uniqueId);
public TagHelperContext (Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList allAttributes, System.Collections.Generic.IDictionary<object,object> items, string uniqueId);
new Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext : Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList * System.Collections.Generic.IDictionary<obj, obj> * string -> Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext
Public Sub New (allAttributes As TagHelperAttributeList, items As IDictionary(Of Object, Object), uniqueId As String)

パラメーター

allAttributes
TagHelperAttributeList

現在の HTML 要素に関連付けられているすべての属性。

items
IDictionary<Object,Object>

ITagHelperの と通信するために使用される項目のコレクション。

uniqueId
String

これが TagHelperContext 適用されるソース要素の一意識別子。

適用対象

TagHelperContext(String, TagHelperAttributeList, IDictionary<Object,Object>, String)

ソース:
TagHelperContext.cs
ソース:
TagHelperContext.cs

新しい TagHelperContext をインスタンス化します。

public:
 TagHelperContext(System::String ^ tagName, Microsoft::AspNetCore::Razor::TagHelpers::TagHelperAttributeList ^ allAttributes, System::Collections::Generic::IDictionary<System::Object ^, System::Object ^> ^ items, System::String ^ uniqueId);
public TagHelperContext (string tagName, Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList allAttributes, System.Collections.Generic.IDictionary<object,object> items, string uniqueId);
new Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext : string * Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList * System.Collections.Generic.IDictionary<obj, obj> * string -> Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext
Public Sub New (tagName As String, allAttributes As TagHelperAttributeList, items As IDictionary(Of Object, Object), uniqueId As String)

パラメーター

tagName
String

要素の解析された HTML タグ名。

allAttributes
TagHelperAttributeList

現在の HTML 要素に関連付けられているすべての属性。

items
IDictionary<Object,Object>

ITagHelperの と通信するために使用される項目のコレクション。

uniqueId
String

これが TagHelperContext 適用されるソース要素の一意識別子。

適用対象