Пример #1
0
        public Either <RfcErrorInfo, Unit> MoveToNextTableRow(ITableHandle tableHandle)
        {
            Logger.IfSome(l => l.LogTrace("move to next table row by table handle", tableHandle));
            var rc = NativeApi.MoveToNextTableRow(tableHandle as TableHandle, out var errorInfo);

            return(ResultOrError(Unit.Default, rc, errorInfo));
        }