Encoding::EncoderFallback Property
Gets or sets the EncoderFallback object for the current Encoding object.
Assembly: mscorlib (in mscorlib.dll)
| Exception | Condition |
|---|---|
| ArgumentNullException | The value in a set operation is null. |
| InvalidOperationException | A value cannot be assigned in a set operation because the current Encoding object is read-only. |
The EncoderFallback object represents an error handler that is invoked when a character cannot be converted into an encoded byte sequence. Any one of the following handler types is supported:
A best-fit fallback handler, which replaces characters that cannot be encoded with some suitable replacement character.
A replacement fallback handler, which replaces characters that cannot be encoded with some arbitrary replacement character. The .NET Framework includes one replacement fallback handler, EncoderFallback, which by default replaces characters that cannot be encoded with a question mark ("?") character.
An exception fallback handler, which throws an exception when characters cannot be encoded. The .NET Framework includes one exception fallback handler, EncoderExceptionFallback, which throws an EncoderFallbackException when characters cannot be decoded.
Available since 10
.NET Framework
Available since 2.0