Skip to content

Commit d86ba3f

Browse files
authored
DOCSP-35032 - update links (#147)
1 parent 36549a5 commit d86ba3f

22 files changed

+78
-78
lines changed

source/faq.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Why Does the Driver Throw a Timeout During Server Selection?
118118
Each driver operation requires that you choose a healthy server
119119
satisfying the :manual:`server selection criteria
120120
</core/read-preference-mechanics>`. If you do not select an appropriate
121-
server within the `server selection timeout <{+new-api-root+}/MongoDB.Driver.Legacy/MongoDB.Driver.MongoServerSettings.html#MongoDB_Driver_MongoServerSettings_ServerSelectionTimeout>`__, the driver throws a
121+
server within the `server selection timeout <{+new-api-root+}/MongoDB.Driver.Legacy/MongoDB.Driver.MongoServerSettings.ServerSelectionTimeout.html>`__, the driver throws a
122122
server selection timeout exception. The exception looks similar to the
123123
following:
124124

source/fundamentals/authentication.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,5 +397,5 @@ guide, see the following API Documentation:
397397
- `MongoCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.html>`__
398398
- `MongoClient() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoClient.html>`__
399399
- `MongoClientSettings <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoClientSettings.html>`__
400-
- `CreateCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.html#MongoDB_Driver_MongoCredential_CreateCredential_System_String_System_String_System_Security_SecureString_>`__
401-
- `CreateMongoX509Credential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.html#MongoDB_Driver_MongoCredential_CreateMongoX509Credential_System_String_>`__
400+
- `CreateCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.CreateCredential.html>`__
401+
- `CreateMongoX509Credential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.CreateMongoX509Credential.html>`__

source/fundamentals/builders.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ The preceding example creates the following pipeline:
313313
You can add stages to your pipeline that don't have corresponding type-safe
314314
methods in the ``PipelineDefinitionBuilder`` interface by providing your query
315315
as a ``BsonDocument`` to the `AppendStage() method
316-
<{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.PipelineDefinitionBuilder.html#MongoDB_Driver_PipelineDefinitionBuilder_AppendStage__3_MongoDB_Driver_PipelineDefinition___0___1__MongoDB_Driver_PipelineStageDefinition___1___2__MongoDB_Bson_Serialization_IBsonSerializer___2__>`__.
316+
<{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.PipelineDefinitionBuilder.AppendStage.html>`__.
317317

318318
.. code-block:: csharp
319319

source/fundamentals/crud/read-operations/count.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ API Documentation
240240
To learn more about any of the methods or types discussed in this
241241
guide, see the following API Documentation:
242242

243-
- `CountDocuments() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_CountDocuments_MongoDB_Driver_FilterDefinition__0__MongoDB_Driver_CountOptions_System_Threading_CancellationToken_>`__
243+
- `CountDocuments() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.CountDocuments.html>`__
244244
- `CountOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.CountOptions.html>`__
245-
- `EstimatedDocumentCount() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCollectionBase-1.html>`__
245+
- `EstimatedDocumentCount() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCollectionBase-1.EstimatedDocumentCount.html>`__
246246
- `EstimatedDocumentCountOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.EstimatedDocumentCountOptions.html>`__

source/fundamentals/crud/read-operations/retrieve.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -288,11 +288,11 @@ API Documentation
288288
To learn more about any of the methods or types discussed in this
289289
guide, see the following API Documentation:
290290

291-
- `Find() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollectionExtensions.html#MongoDB_Driver_IMongoCollectionExtensions_Find__1_MongoDB_Driver_IMongoCollection___0__MongoDB_Driver_FilterDefinition___0__MongoDB_Driver_FindOptions_>`__
292-
- `FirstOrDefault() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IFindFluentExtensions.html#MongoDB_Driver_IFindFluentExtensions_FirstOrDefault__2_MongoDB_Driver_IFindFluent___0___1__System_Threading_CancellationToken_>`__
293-
- `FirstOrDefaultAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSourceExtensions.html#MongoDB_Driver_IAsyncCursorSourceExtensions_FirstOrDefaultAsync__1_MongoDB_Driver_IAsyncCursorSource___0__System_Threading_CancellationToken_>`__
291+
- `Find() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollectionExtensions.Find.html>`__
292+
- `FirstOrDefault() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IFindFluentExtensions.FirstOrDefault.html>`__
293+
- `FirstOrDefaultAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSourceExtensions.FirstOrDefaultAsync.html>`__
294294
- `FindOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.FindOptions.html>`__
295-
- `ToList() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSourceExtensions.html#MongoDB_Driver_IAsyncCursorSourceExtensions_ToList__1_MongoDB_Driver_IAsyncCursorSource___0__System_Threading_CancellationToken_>`__
296-
- `ToListAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSourceExtensions.html#MongoDB_Driver_IAsyncCursorSourceExtensions_FirstOrDefaultAsync__1_MongoDB_Driver_IAsyncCursorSource___0__System_Threading_CancellationToken_>`__
297-
- `ToCursor() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSource-1.html#MongoDB_Driver_IAsyncCursorSource_1_ToCursor_System_Threading_CancellationToken_>`__
298-
- `ToCursorAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSource-1.html#MongoDB_Driver_IAsyncCursorSource_1_ToCursorAsync_System_Threading_CancellationToken_>`__
295+
- `ToList() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSourceExtensions.ToList.html>`__
296+
- `ToListAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSourceExtensions.FirstOrDefaultAsync.html>`__
297+
- `ToCursor() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSource-1.ToCursor.html>`__
298+
- `ToCursorAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSource-1.ToCursorAsync.html>`__

source/fundamentals/crud/write-operations/delete.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,9 @@ API Documentation
223223
To learn more about any of the methods or types discussed in this
224224
guide, see the following API Documentation:
225225

226-
- `DeleteOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_DeleteOne_MongoDB_Driver_FilterDefinition__0__MongoDB_Driver_DeleteOptions_System_Threading_CancellationToken_>`__
227-
- `DeleteOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_DeleteOneAsync_MongoDB_Driver_FilterDefinition__0__MongoDB_Driver_DeleteOptions_System_Threading_CancellationToken_>`__
228-
- `DeleteMany() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_DeleteMany_MongoDB_Driver_FilterDefinition__0__MongoDB_Driver_DeleteOptions_System_Threading_CancellationToken_>`__
229-
- `DeleteManyAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_DeleteManyAsync_MongoDB_Driver_FilterDefinition__0__MongoDB_Driver_DeleteOptions_System_Threading_CancellationToken_>`__
226+
- `DeleteOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.DeleteOne.html>`__
227+
- `DeleteOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.DeleteOneAsync.html>`__
228+
- `DeleteMany() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.DeleteMany.html>`__
229+
- `DeleteManyAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.DeleteManyAsync.html>`__
230230
- `DeleteOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.DeleteOptions.html>`__
231231
- `DeleteResult <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.DeleteResult.html>`__

source/fundamentals/crud/write-operations/insert.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -298,9 +298,9 @@ API Documentation
298298
To learn more about any of the methods or types discussed in this
299299
guide, see the following API Documentation:
300300

301-
- `InsertOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_InsertOne__0_MongoDB_Driver_InsertOneOptions_System_Threading_CancellationToken_>`__
302-
- `InsertOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_InsertOneAsync__0_MongoDB_Driver_InsertOneOptions_System_Threading_CancellationToken_>`__
303-
- `InsertMany() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_InsertMany_System_Collections_Generic_IEnumerable__0__MongoDB_Driver_InsertManyOptions_System_Threading_CancellationToken_>`__
304-
- `InsertManyAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_InsertManyAsync_System_Collections_Generic_IEnumerable__0__MongoDB_Driver_InsertManyOptions_System_Threading_CancellationToken_>`__
301+
- `InsertOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.InsertOne.html>`__
302+
- `InsertOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.InsertOneAsync.html>`__
303+
- `InsertMany() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.InsertMany.html>`__
304+
- `InsertManyAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.InsertManyAsync.html>`__
305305
- `InsertOneOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.InsertOneOptions.html>`__
306306
- `InsertManyOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.InsertManyOptions.html>`__

source/fundamentals/crud/write-operations/modify.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -525,13 +525,13 @@ API Documentation
525525
To learn more about any of the methods or types discussed in this
526526
guide, see the following API documentation:
527527

528-
* `UpdateOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_UpdateOne_MongoDB_Driver_FilterDefinition__0__MongoDB_Driver_UpdateDefinition__0__MongoDB_Driver_UpdateOptions_System_Threading_CancellationToken_>`__
529-
* `UpdateOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_UpdateOneAsync_MongoDB_Driver_FilterDefinition__0__MongoDB_Driver_UpdateDefinition__0__MongoDB_Driver_UpdateOptions_System_Threading_CancellationToken_>`__
530-
* `UpdateMany() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_UpdateMany_MongoDB_Driver_FilterDefinition__0__MongoDB_Driver_UpdateDefinition__0__MongoDB_Driver_UpdateOptions_System_Threading_CancellationToken_>`__
531-
* `UpdateManyAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_UpdateManyAsync_MongoDB_Driver_FilterDefinition__0__MongoDB_Driver_UpdateDefinition__0__MongoDB_Driver_UpdateOptions_System_Threading_CancellationToken_>`__
528+
* `UpdateOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.UpdateOne.html>`__
529+
* `UpdateOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.UpdateOneAsync.html>`__
530+
* `UpdateMany() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.UpdateMany.html>`__
531+
* `UpdateManyAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.UpdateManyAsync.html>`__
532532
* `UpdateOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.UpdateOptions.html>`__
533533
* `UpdateResult <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.UpdateResult.html>`__
534-
* `ReplaceOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_ReplaceOne_MongoDB_Driver_FilterDefinition__0___0_MongoDB_Driver_ReplaceOptions_System_Threading_CancellationToken_>`__
535-
* `ReplaceOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_ReplaceOneAsync_MongoDB_Driver_FilterDefinition__0___0_MongoDB_Driver_ReplaceOptions_System_Threading_CancellationToken_>`__
534+
* `ReplaceOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.ReplaceOne.html>`__
535+
* `ReplaceOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.ReplaceOneAsync.html>`__
536536
* `ReplaceOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.ReplaceOptions.html>`__
537537
* `ReplaceOneResult <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.ReplaceOneResult.html>`__

source/fundamentals/enterprise-authentication.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,5 +264,5 @@ guide, see the following API Documentation:
264264
- `MongoCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.html>`__
265265
- `MongoClient() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoClient.html>`__
266266
- `MongoClientSettings <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoClientSettings.html>`__
267-
- `CreateGssapiCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.html#MongoDB_Driver_MongoCredential_CreateGssapiCredential_System_String_>`__
268-
- `CreatePlainCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.html#MongoDB_Driver_MongoCredential_CreatePlainCredential_System_String_System_String_System_Security_SecureString_>`__
267+
- `CreateGssapiCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.CreateGssapiCredential.html>`__
268+
- `CreatePlainCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.CreatePlainCredential.html>`__

source/fundamentals/serialization.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ see the following pages:
152152
To learn more about any of the methods or types discussed in this
153153
guide, see the following API documentation:
154154

155-
- `SerializerRegistry <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.BsonSerializer.html#MongoDB_Bson_Serialization_BsonSerializer_SerializerRegistry>`__
155+
- `SerializerRegistry <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.BsonSerializer.SerializerRegistry.html>`__
156156
- `BsonSerializer <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.BsonSerializer.html>`__
157157
- `IBsonSerializer <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.IBsonSerializer.html>`__
158158
- `SerializerBase<T> <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.Serializers.SerializerBase-1.html>`__

0 commit comments

Comments
 (0)