JavaScriptTestEncoder.TryEncodeUnicodeScalar Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Encodes a Unicode scalar value and writes it to a buffer.
public:
override bool TryEncodeUnicodeScalar(int unicodeScalar, char* buffer, int bufferLength, [Runtime::InteropServices::Out] int % numberOfCharactersWritten);
public override bool TryEncodeUnicodeScalar (int unicodeScalar, char* buffer, int bufferLength, out int numberOfCharactersWritten);
override this.TryEncodeUnicodeScalar : int * nativeptr<char> * int * int -> bool
Parameters
- unicodeScalar
- Int32
A Unicode scalar value.
- buffer
- Char*
A pointer to the buffer to which to write the encoded text.
- bufferLength
- Int32
The length of the destination buffer
in characters.
- numberOfCharactersWritten
- Int32
When the method returns, indicates the number of characters written to the buffer
.
Returns
false
if bufferLength
is too small to fit the encoded text; otherwise, returns true
.