Skip to content

Commit 49ecd16

Browse files
committed
Updated documentation for the eventing. Removed preliminary tag from the Command events.
1 parent c8a34e1 commit 49ecd16

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

Docs/reference/content/what_is_new.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ The 2.1 driver ships with a number of new features. The most notable are discuss
2020

2121
## LINQ
2222

23-
[CSHARP-935](https://jira.mongodb.org/browse/CSHARP-935) LINQ support has been rewritten and now targets the aggregation framework. It is a more natural translation and enables many features of LINQ that were previously not able to be translated.
23+
[CSHARP-935](https://jira.mongodb.org/browse/CSHARP-935) - LINQ support has been rewritten and now targets the aggregation framework. It is a more natural translation and enables many features of LINQ that were previously not able to be translated.
2424

25-
Simply use the new [`AsQueryable`]({{< apiref "M_MongoDB_Driver_IMongoCollectionExtensions_AsQueryable__1" >}}) method to work with LINQ.
25+
Simply use the new [`AsQueryable`]({{< apiref "M_MongoDB_Driver_IMongoCollectionExtensions_AsQueryable__1" >}}) method to work with LINQ.
26+
27+
28+
## Eventing Implementation
29+
30+
[CSHARP-1374](https://jira.mongodb.org/browse/CSHARP-1374) - An eventing API has been added allowing a user to subscribe to one or more events from the core driver for insight into server discovery, server selection, connection pooling, and commands.

src/MongoDB.Driver.Core/Core/Events/CommandFailedEvent.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
namespace MongoDB.Driver.Core.Events
2222
{
23-
/// <preliminary/>
2423
/// <summary>
2524
/// Occurs when a command has failed.
2625
/// </summary>

src/MongoDB.Driver.Core/Core/Events/CommandStartedEvent.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
namespace MongoDB.Driver.Core.Events
2121
{
22-
/// <preliminary/>
2322
/// <summary>
2423
/// Occurs when a command has started.
2524
/// </summary>

src/MongoDB.Driver.Core/Core/Events/CommandSucceededEvent.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
namespace MongoDB.Driver.Core.Events
2222
{
23-
/// <preliminary/>
2423
/// <summary>
2524
/// Occurs when a command has succeeded.
2625
/// </summary>

0 commit comments

Comments
 (0)