TagHelperContext.Reinitialize Method

Definition

Overloads

Reinitialize(IDictionary<Object,Object>, String)

Clears the TagHelperContext and updates its state with the provided values.

Reinitialize(String, IDictionary<Object,Object>, String)

Clears the TagHelperContext and updates its state with the provided values.

Reinitialize(IDictionary<Object,Object>, String)

Source:
TagHelperContext.cs
Source:
TagHelperContext.cs

Clears the TagHelperContext and updates its state with the provided values.

public:
 void Reinitialize(System::Collections::Generic::IDictionary<System::Object ^, System::Object ^> ^ items, System::String ^ uniqueId);
public void Reinitialize (System.Collections.Generic.IDictionary<object,object> items, string uniqueId);
member this.Reinitialize : System.Collections.Generic.IDictionary<obj, obj> * string -> unit
Public Sub Reinitialize (items As IDictionary(Of Object, Object), uniqueId As String)

Parameters

uniqueId
String

The unique id to use.

Applies to

Reinitialize(String, IDictionary<Object,Object>, String)

Source:
TagHelperContext.cs
Source:
TagHelperContext.cs

Clears the TagHelperContext and updates its state with the provided values.

public:
 void Reinitialize(System::String ^ tagName, System::Collections::Generic::IDictionary<System::Object ^, System::Object ^> ^ items, System::String ^ uniqueId);
public void Reinitialize (string tagName, System.Collections.Generic.IDictionary<object,object> items, string uniqueId);
member this.Reinitialize : string * System.Collections.Generic.IDictionary<obj, obj> * string -> unit
Public Sub Reinitialize (tagName As String, items As IDictionary(Of Object, Object), uniqueId As String)

Parameters

tagName
String

The HTML tag name to use.

uniqueId
String

The unique id to use.

Applies to