TagHelperChunk Constructor
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í.
Crea una instancia de un nuevo objeto TagHelperChunk.
public:
TagHelperChunk(System::String ^ tagName, Microsoft::AspNetCore::Razor::TagHelpers::TagMode tagMode, System::Collections::Generic::IList<Microsoft::AspNetCore::Razor::Chunks::TagHelperAttributeTracker> ^ attributes, System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Razor::Compilation::TagHelpers::TagHelperDescriptor ^> ^ descriptors);
public TagHelperChunk (string tagName, Microsoft.AspNetCore.Razor.TagHelpers.TagMode tagMode, System.Collections.Generic.IList<Microsoft.AspNetCore.Razor.Chunks.TagHelperAttributeTracker> attributes, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Razor.Compilation.TagHelpers.TagHelperDescriptor> descriptors);
new Microsoft.AspNetCore.Razor.Chunks.TagHelperChunk : string * Microsoft.AspNetCore.Razor.TagHelpers.TagMode * System.Collections.Generic.IList<Microsoft.AspNetCore.Razor.Chunks.TagHelperAttributeTracker> * seq<Microsoft.AspNetCore.Razor.Compilation.TagHelpers.TagHelperDescriptor> -> Microsoft.AspNetCore.Razor.Chunks.TagHelperChunk
Public Sub New (tagName As String, tagMode As TagMode, attributes As IList(Of TagHelperAttributeTracker), descriptors As IEnumerable(Of TagHelperDescriptor))
Parámetros
- tagName
- String
El nombre de etiqueta asociado al elemento HTML de las aplicaciones auxiliares de etiquetas.
- tagMode
- TagMode
Sintaxis HTML del elemento en el origen de Razor.
- attributes
- IList<TagHelperAttributeTracker>
Los atributos asociados al elemento HTML aplicaciones auxiliares de etiquetas.
- descriptors
- IEnumerable<TagHelperDescriptor>
Los TagHelperDescriptor s asociados a este elemento HTML de aplicaciones auxiliares de etiquetas.