Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DecoderReplacementFallback Constructor (String^)

 

Initializes a new instance of the DecoderReplacementFallback class using a specified replacement string.

Namespace:   System.Text
Assembly:  mscorlib (in mscorlib.dll)

public:
DecoderReplacementFallback(
	String^ replacement
)

Parameters

replacement
Type: System::String^

A string that is emitted in a decoding operation in place of an input byte sequence that cannot be decoded.

Exception Condition
ArgumentNullException

replacement is null.

ArgumentException

replacement contains an invalid surrogate pair. In other words, the surrogate pair does not consist of one high surrogate component followed by one low surrogate component.

The replacement parameter initializes the replacement string that is the value of the DecoderReplacementFallback object. A commonly used value is the Unicode "Replacement Character" (U+FFFD), which is specifically intended to replace an incoming character having a value that is unknown or unrepresentable in Unicode.

Universal Windows Platform
Available since 10
.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft