-
Notifications
You must be signed in to change notification settings - Fork 1.2k
JsCopyPropertyId
Xiaoyin Liu edited this page Aug 22, 2017
·
1 revision
Copies the name associated with the property ID into a buffer.
CHAKRA_API
JsCopyPropertyId(
_In_ JsPropertyIdRef propertyId,
_Out_ char* buffer,
_In_ size_t bufferSize,
_Out_ size_t* length);
- propertyId: The property ID to get the name of
- buffer: The buffer holding the name associated with the property ID, encoded as utf8
- bufferSize: Size of the buffer
- length: Total number of characters written or to be written
The code JsNoError if the operation succeeded, a failure code otherwise.
This API is experimental and may have breaking change later.
Requires an active script context.
When size of the buffer
is unknown,
buffer
argument can be nullptr.
length
argument will return the size needed.
- Architecture Overview
- Building ChakraCore
- ChakraCore Code Structure
- Contributor Guidance
- Engineering Notes
- Embedding ChakraCore
- Testing ChakraCore
- Getting ChakraCore binaries
- Label Glossary
- Resources
- Roadmap / Release Notes
Want to contribute to this Wiki? Fork it and send a pull request!