MongoDB.GridFS.GridFSExtensions.FileExists C# (CSharp) Метод

FileExists() публичный статический Метод

public static FileExists ( this col, string name ) : bool
col this
name string
Результат bool
        public static bool FileExists(this Collection col, string name)
        {
            return col.FindFile(name) != null;
        }