MongoDB.Driver.Database.GetLastErrorAndFSync C# (CSharp) Метод

GetLastErrorAndFSync() публичный Метод

Retrieves the last error and forces the database to fsync all files before returning.
Server version 1.3+
public GetLastErrorAndFSync ( ) : Document
Результат Document
        public Document GetLastErrorAndFSync()
        {
            return SendCommand(new Document(){{"getlasterror", 1.0},{"fsync", true}});
        }