TagHelperAttribute Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
TagHelperAttribute(String) |
Vytvoří instanci nové instance objektu TagHelperAttribute se zadaným |
TagHelperAttribute(String, Object) |
Vytvoří instanci nové instance TagHelperAttribute se zadanými |
TagHelperAttribute(String, Object, HtmlAttributeValueStyle) |
Vytvoří instanci nové instance TagHelperAttribute se zadanými |
TagHelperAttribute(String)
- Zdroj:
- TagHelperAttribute.cs
- Zdroj:
- TagHelperAttribute.cs
- Zdroj:
- TagHelperAttribute.cs
Vytvoří instanci nové instance objektu TagHelperAttribute se zadaným name
objektem .
ValueStyle je nastavená na Minimized a Value na null
.
public:
TagHelperAttribute(System::String ^ name);
public TagHelperAttribute (string name);
new Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute : string -> Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute
Public Sub New (name As String)
Parametry
Platí pro
TagHelperAttribute(String, Object)
- Zdroj:
- TagHelperAttribute.cs
- Zdroj:
- TagHelperAttribute.cs
- Zdroj:
- TagHelperAttribute.cs
Vytvoří instanci nové instance TagHelperAttribute se zadanými name
a value
.
ValueStyle je nastavená na DoubleQuoteshodnotu .
public:
TagHelperAttribute(System::String ^ name, System::Object ^ value);
public TagHelperAttribute (string name, object value);
new Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute : string * obj -> Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute
Public Sub New (name As String, value As Object)
Parametry
Platí pro
TagHelperAttribute(String, Object, HtmlAttributeValueStyle)
- Zdroj:
- TagHelperAttribute.cs
- Zdroj:
- TagHelperAttribute.cs
- Zdroj:
- TagHelperAttribute.cs
Vytvoří instanci nové instance TagHelperAttribute se zadanými name
, value
a valueStyle
.
public:
TagHelperAttribute(System::String ^ name, System::Object ^ value, Microsoft::AspNetCore::Razor::TagHelpers::HtmlAttributeValueStyle valueStyle);
public TagHelperAttribute (string name, object value, Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle valueStyle);
new Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute : string * obj * Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle -> Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute
Public Sub New (name As String, value As Object, valueStyle As HtmlAttributeValueStyle)
Parametry
- valueStyle
- HtmlAttributeValueStyle
Nová ValueStyle instance.
Poznámky
Pokud valueStyle
je Minimized, value
při vykreslení této instance se ignoruje.