JsGetIndexedProperty() приватный Метод

private JsGetIndexedProperty ( IeJsValue obj, IeJsValue index, IeJsValue &result ) : JsErrorCode
obj IeJsValue
index IeJsValue
result IeJsValue
Результат JsErrorCode
Пример #1
0
        /// <summary>
        /// Retrieve a value at the specified index of an object
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="index">The index to retrieve</param>
        /// <returns>The retrieved value</returns>
        public IeJsValue GetIndexedProperty(IeJsValue index)
        {
            IeJsValue propertyReference;

            IeJsErrorHelpers.ThrowIfError(IeNativeMethods.JsGetIndexedProperty(this, index, out propertyReference));

            return(propertyReference);
        }