Class FallbackEncodingOptions
Specifies options that is related to System.Text.Encoding operations.
Inherited Members
Namespace: Cuemon.Text
Assembly: Cuemon.Core.dll
Syntax
public class FallbackEncodingOptions : EncodingOptions
Constructors
| Improve this DocFallbackEncodingOptions()
Initializes a new instance of the FallbackEncodingOptions class.
Declaration
public FallbackEncodingOptions()
Remarks
The following table shows the initial property values for an instance of FallbackEncodingOptions.
Property | Initial Value |
---|---|
EncoderFallback | EncoderFallback.ExceptionFallback |
DecoderFallback | DecoderFallback.ExceptionFallback |
Properties
| Improve this DocDecoderFallback
Gets or sets the object that provides an error-handling procedure when a byte sequence cannot be decoded.
Declaration
public DecoderFallback DecoderFallback { get; set; }
Property Value
Type | Description |
---|---|
System.Text.DecoderFallback | The object that provides an error-handling procedure when a byte sequence cannot be decoded. |
EncoderFallback
Gets or sets the object that provides an error-handling procedure when a character cannot be encoded.
Declaration
public EncoderFallback EncoderFallback { get; set; }
Property Value
Type | Description |
---|---|
System.Text.EncoderFallback | The object that provides an error-handling procedure when a character cannot be encoded. |