MsieJavaScriptEngine.JsRt.Native.JsDeleteIndexedProperty C# (CSharp) Method

JsDeleteIndexedProperty() private method

private JsDeleteIndexedProperty ( JavaScriptValue obj, JavaScriptValue index ) : JavaScriptErrorCode
obj JavaScriptValue
index JavaScriptValue
return JavaScriptErrorCode
        internal static extern JavaScriptErrorCode JsDeleteIndexedProperty(JavaScriptValue obj, JavaScriptValue index);

Usage Example

 /// <summary>
 /// Delete the value at the specified index of an object.
 /// </summary>
 /// <remarks>
 /// Requires an active script context.
 /// </remarks>
 /// <param name="index">The index to delete.</param>
 public void DeleteIndexedProperty(JavaScriptValue index)
 {
     Native.ThrowIfError(Native.JsDeleteIndexedProperty(this, index));
 }
Native