Có, không có isCapped
trong MongoDB.Driver 2.0. Nhưng bạn có thể lấy nó từ thống kê bộ sưu tập
public async Task<bool> IsCollectionCapped(string collectionName)
{
var command = new BsonDocumentCommand<BsonDocument>(new BsonDocument
{
{"collstats", collectionName}
});
var stats = await GetDatabase().RunCommandAsync(command);
return stats["capped"].AsBoolean;
}