JsGetOwnPropertyDescriptor Function

Gets a property descriptor for an object's own property.

Syntax

STDAPI_(JsErrorCode) JsGetOwnPropertyDescriptor(  
   _In_ JsValueRef object,  
   _In_ JsPropertyIdRef propertyId,  
   _Out_ JsValueRef *propertyDescriptor  
);  

Parameters

object
The object that has the property.

propertyId
The ID of the property.

propertyDescriptor
The property descriptor.

Return Value

The code JsNoError if the operation succeeded, a failure code otherwise.

Remarks

Requires an active script context.

Requirements

Header: jsrt.h

See Also

Reference (JavaScript Runtime)