TagHelperExecutionContext.Reinitialize 方法

定义

清除 并使用 TagHelperExecutionContext 提供的值更新其状态。

public:
 void Reinitialize(System::String ^ tagName, Microsoft::AspNetCore::Razor::TagHelpers::TagMode tagMode, System::Collections::Generic::IDictionary<System::Object ^, System::Object ^> ^ items, System::String ^ uniqueId, Func<System::Threading::Tasks::Task ^> ^ executeChildContentAsync);
public void Reinitialize (string tagName, Microsoft.AspNetCore.Razor.TagHelpers.TagMode tagMode, System.Collections.Generic.IDictionary<object,object> items, string uniqueId, Func<System.Threading.Tasks.Task> executeChildContentAsync);
member this.Reinitialize : string * Microsoft.AspNetCore.Razor.TagHelpers.TagMode * System.Collections.Generic.IDictionary<obj, obj> * string * Func<System.Threading.Tasks.Task> -> unit
Public Sub Reinitialize (tagName As String, tagMode As TagMode, items As IDictionary(Of Object, Object), uniqueId As String, executeChildContentAsync As Func(Of Task))

参数

tagName
String

要使用的标记名称。

tagMode
TagMode

要使用的 TagMode

uniqueId
String

要使用的唯一 ID。

executeChildContentAsync
Func<Task>

要使用的 Func<TResult>

适用于