Share via


ReadOnlyTagHelperAttributeList Constructors

Definition

Overloads

ReadOnlyTagHelperAttributeList()

Instantiates a new instance of ReadOnlyTagHelperAttributeList with an empty collection.

ReadOnlyTagHelperAttributeList(IList<TagHelperAttribute>)

Instantiates a new instance of ReadOnlyTagHelperAttributeList with the specified attributes.

ReadOnlyTagHelperAttributeList()

Source:
ReadOnlyTagHelperAttributeList.cs
Source:
ReadOnlyTagHelperAttributeList.cs

Instantiates a new instance of ReadOnlyTagHelperAttributeList with an empty collection.

protected:
 ReadOnlyTagHelperAttributeList();
protected ReadOnlyTagHelperAttributeList ();
Protected Sub New ()

Applies to

ReadOnlyTagHelperAttributeList(IList<TagHelperAttribute>)

Source:
ReadOnlyTagHelperAttributeList.cs
Source:
ReadOnlyTagHelperAttributeList.cs

Instantiates a new instance of ReadOnlyTagHelperAttributeList with the specified attributes.

public:
 ReadOnlyTagHelperAttributeList(System::Collections::Generic::IList<Microsoft::AspNetCore::Razor::TagHelpers::TagHelperAttribute ^> ^ attributes);
public ReadOnlyTagHelperAttributeList (System.Collections.Generic.IList<Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute> attributes);
new Microsoft.AspNetCore.Razor.TagHelpers.ReadOnlyTagHelperAttributeList : System.Collections.Generic.IList<Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute> -> Microsoft.AspNetCore.Razor.TagHelpers.ReadOnlyTagHelperAttributeList
Public Sub New (attributes As IList(Of TagHelperAttribute))

Parameters

attributes
IList<TagHelperAttribute>

The collection to wrap.

Applies to