-
Notifications
You must be signed in to change notification settings - Fork 1.2k
JsGetPropertyNameFromId
Xiaoyin Liu edited this page Aug 22, 2017
·
3 revisions
Gets the name associated with the property ID.
STDAPI_(JsErrorCode)
JsGetPropertyNameFromId(
_In_ JsPropertyIdRef propertyId,
_Outptr_result_z_ const wchar_t **name);
- propertyId: The property ID to get the name of.
- name: The name associated with the property ID.
The code JsNoError if the operation succeeded, a failure code otherwise.
This API is Windows-only (see JsCopyPropertyId for cross-platform equivalent). Requires an active script context. The returned buffer is valid as long as the runtime is alive and cannot be used once the runtime has been disposed.
- 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!