OpenCvSharp.FileStorage.this C# (CSharp) Method

this() public method

Returns the specified element of the top-level mapping
public this ( string nodeName ) : FileNode
nodeName string
return FileNode
        public FileNode this[string nodeName]
        {
            get
            {
                if (disposed)
                    throw new ObjectDisposedException("FileStorage");
                if (nodeName == null)
                    throw new ArgumentNullException(nameof(nodeName));
                IntPtr node = NativeMethods.core_FileStorage_indexer(ptr, nodeName);
                if (node == IntPtr.Zero)
                    return null;
                return new FileNode(node);
            }
        }