OpenCvSharp.FileStorage.IsOpened C# (CSharp) Method

IsOpened() public method

Returns true if the object is associated with currently opened file.
public IsOpened ( ) : bool
return bool
        public virtual bool IsOpened()
        {
            if (disposed)
                throw new ObjectDisposedException("FileStorage");
            return NativeMethods.core_FileStorage_isOpened(ptr) != 0;
        }