Browse Source

Added RawDocument property to the IndexInfo class.

pull/71/head
rstam 14 years ago
parent
commit
90cadbe7f8
  1. 7
      Driver/Core/GetIndexesResult.cs

7
Driver/Core/GetIndexesResult.cs

@ -191,6 +191,13 @@ namespace MongoDB.Driver {
}
}
/// <summary>
/// Gets the raw BSON document containing the index information.
/// </summary>
public BsonDocument RawDocument {
get { return document; }
}
/// <summary>
/// Gets the version of the index.
/// </summary>

Loading…
Cancel
Save