Exemplo n.º 1
0
        public Either <RfcErrorInfo, ITableHandle> CloneTable(ITableHandle tableHandle)
        {
            Logger.IfSome(l => l.LogTrace("cloning table by tableHandle", tableHandle));
            ITableHandle handle = NativeApi.CloneTable(tableHandle as TableHandle, out var errorInfo);

            return(ResultOrError(handle, errorInfo));
        }