TagHelperOutputExtensions.RemoveRange Method

Definition

Removes the given attributes from tagHelperOutput's Attributes.

public:
[System::Runtime::CompilerServices::Extension]
 static void RemoveRange(Microsoft::AspNetCore::Razor::TagHelpers::TagHelperOutput ^ tagHelperOutput, System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Razor::TagHelpers::TagHelperAttribute ^> ^ attributes);
public static void RemoveRange (this Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput tagHelperOutput, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute> attributes);
static member RemoveRange : Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput * seq<Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute> -> unit
<Extension()>
Public Sub RemoveRange (tagHelperOutput As TagHelperOutput, attributes As IEnumerable(Of TagHelperAttribute))

Parameters

tagHelperOutput
TagHelperOutput

The TagHelperOutput this method extends.

attributes
IEnumerable<TagHelperAttribute>

Attributes to remove.

Applies to