Share via


TagHelperAttributeList Constructors

Definition

Overloads

TagHelperAttributeList()

Instantiates a new instance of TagHelperAttributeList with an empty collection.

TagHelperAttributeList(IEnumerable<TagHelperAttribute>)

Instantiates a new instance of TagHelperAttributeList with the specified attributes.

TagHelperAttributeList(List<TagHelperAttribute>)

Instantiates a new instance of TagHelperAttributeList with the specified attributes.

TagHelperAttributeList()

Source:
TagHelperAttributeList.cs
Source:
TagHelperAttributeList.cs

Instantiates a new instance of TagHelperAttributeList with an empty collection.

public:
 TagHelperAttributeList();
public TagHelperAttributeList ();
Public Sub New ()

Applies to

TagHelperAttributeList(IEnumerable<TagHelperAttribute>)

Source:
TagHelperAttributeList.cs
Source:
TagHelperAttributeList.cs

Instantiates a new instance of TagHelperAttributeList with the specified 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))

Parameters

attributes
IEnumerable<TagHelperAttribute>

The collection to wrap.

Applies to

TagHelperAttributeList(List<TagHelperAttribute>)

Source:
TagHelperAttributeList.cs
Source:
TagHelperAttributeList.cs

Instantiates a new instance of TagHelperAttributeList with the specified 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))

Parameters

attributes
List<TagHelperAttribute>

The collection to wrap.

Applies to