TagHelperOutputExtensions.RemoveClass Method

Definition

Removes the given classValue from the tagHelperOutput's Attributes.

public:
[System::Runtime::CompilerServices::Extension]
 static void RemoveClass(Microsoft::AspNetCore::Razor::TagHelpers::TagHelperOutput ^ tagHelperOutput, System::String ^ classValue, System::Text::Encodings::Web::HtmlEncoder ^ htmlEncoder);
public static void RemoveClass (this Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput tagHelperOutput, string classValue, System.Text.Encodings.Web.HtmlEncoder htmlEncoder);
static member RemoveClass : Microsoft.AspNetCore.Razor.TagHelpers.TagHelperOutput * string * System.Text.Encodings.Web.HtmlEncoder -> unit
<Extension()>
Public Sub RemoveClass (tagHelperOutput As TagHelperOutput, classValue As String, htmlEncoder As HtmlEncoder)

Parameters

tagHelperOutput
TagHelperOutput

The TagHelperOutput this method extends.

classValue
String

The class value to remove.

htmlEncoder
HtmlEncoder

The current HTML encoder.

Applies to