HtmlEncoder.Create Method

Definition

Overloads

Create(TextEncoderSettings)

Creates a new instance of the HtmlEncoder class with the specified settings.

Create(UnicodeRange[])

Creates a new instance of the HtmlEncoder class that specifies characters the encoder is allowed to not encode.

Create(TextEncoderSettings)

Source:
HtmlEncoder.cs
Source:
HtmlEncoder.cs
Source:
HtmlEncoder.cs

Creates a new instance of the HtmlEncoder class with the specified settings.

public:
 static System::Text::Encodings::Web::HtmlEncoder ^ Create(System::Text::Encodings::Web::TextEncoderSettings ^ settings);
public static System.Text.Encodings.Web.HtmlEncoder Create (System.Text.Encodings.Web.TextEncoderSettings settings);
static member Create : System.Text.Encodings.Web.TextEncoderSettings -> System.Text.Encodings.Web.HtmlEncoder
Public Shared Function Create (settings As TextEncoderSettings) As HtmlEncoder

Parameters

settings
TextEncoderSettings

Settings that control how the HtmlEncoder instance encodes, primarily which characters to encode.

Returns

A new instance of the HtmlEncoder class.

Exceptions

settings is null.

Applies to

Create(UnicodeRange[])

Source:
HtmlEncoder.cs
Source:
HtmlEncoder.cs
Source:
HtmlEncoder.cs

Creates a new instance of the HtmlEncoder class that specifies characters the encoder is allowed to not encode.

public:
 static System::Text::Encodings::Web::HtmlEncoder ^ Create(... cli::array <System::Text::Unicode::UnicodeRange ^> ^ allowedRanges);
public static System.Text.Encodings.Web.HtmlEncoder Create (params System.Text.Unicode.UnicodeRange[] allowedRanges);
static member Create : System.Text.Unicode.UnicodeRange[] -> System.Text.Encodings.Web.HtmlEncoder
Public Shared Function Create (ParamArray allowedRanges As UnicodeRange()) As HtmlEncoder

Parameters

allowedRanges
UnicodeRange[]

The set of characters that the encoder is allowed to not encode.

Returns

A new instance of the HtmlEncoder class.

Exceptions

allowedRanges is null.

Remarks

Some characters in allowedRanges might still be encoded; that is, this parameter indicates what ranges the encoder is allowed to not encode, not what characters it must not encode.

Applies to