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
.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET