Tak, nie ma isCapped
w MongoDB.Driver 2.0. Ale możesz to uzyskać ze statystyk kolekcji
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;
}