TagHelperAttributeList Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
| TagHelperAttributeList() |
Crea una instancia de TagHelperAttributeList con una colección vacía. |
| TagHelperAttributeList(IEnumerable<TagHelperAttribute>) |
Crea una instancia de TagHelperAttributeList con el especificado |
| TagHelperAttributeList(List<TagHelperAttribute>) |
Crea una instancia de TagHelperAttributeList con el especificado |
TagHelperAttributeList()
Crea una instancia de TagHelperAttributeList con una colección vacía.
public:
TagHelperAttributeList();
public TagHelperAttributeList ();
Public Sub New ()
Se aplica a
TagHelperAttributeList(IEnumerable<TagHelperAttribute>)
Crea una instancia de TagHelperAttributeList con el especificado attributes.
public:
TagHelperAttributeList(System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Razor::TagHelpers::TagHelperAttribute ^> ^ attributes);
public TagHelperAttributeList (System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute> attributes);
new Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList : seq<Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute> -> Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList
Public Sub New (attributes As IEnumerable(Of TagHelperAttribute))
Parámetros
- attributes
- IEnumerable<TagHelperAttribute>
Colección que se va a ajustar.
Se aplica a
TagHelperAttributeList(List<TagHelperAttribute>)
Crea una instancia de TagHelperAttributeList con el especificado attributes.
public:
TagHelperAttributeList(System::Collections::Generic::List<Microsoft::AspNetCore::Razor::TagHelpers::TagHelperAttribute ^> ^ attributes);
public TagHelperAttributeList (System.Collections.Generic.List<Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute> attributes);
new Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList : System.Collections.Generic.List<Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute> -> Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttributeList
Public Sub New (attributes As List(Of TagHelperAttribute))
Parámetros
- attributes
- List<TagHelperAttribute>
Colección que se va a ajustar.