-
Notifications
You must be signed in to change notification settings - Fork 1.2k
JsGetPropertyIdFromName
Xiaoyin Liu edited this page Aug 22, 2017
·
3 revisions
Gets the property ID associated with the name.
STDAPI_(JsErrorCode)
JsGetPropertyIdFromName(
_In_z_ const wchar_t *name,
_Out_ JsPropertyIdRef *propertyId);
- name: The name of the property ID to get or create. The name may consist of only digits.
- propertyId: The property ID in this runtime for the given name.
The code JsNoError if the operation succeeded, a failure code otherwise.
This API is Windows-only (see JsCreatePropertyId for cross-platform equivalent). Property IDs are specific to a context and cannot be used across contexts. Requires an active script context.
- 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!