UnRegisterNativePart() public static method

public static UnRegisterNativePart ( INativeRef proxyObj ) : void
proxyObj INativeRef
return void
Ejemplo n.º 1
0
        public void Dispose()
        {
            int j = nativeRefList.Count;

            for (int i = nativeRefList.Count - 1; i > -1; --i)
            {
                NativeV8JsInterOp.UnRegisterNativePart(nativeRefList[i]);
            }
            nativeRefList.Clear();
        }