Skip to content

Commit

Permalink
DOCSP-35032 - update links (#147)
Browse files Browse the repository at this point in the history
(cherry picked from commit d86ba3f)
  • Loading branch information
mongoKart committed Dec 15, 2023
1 parent 36549a5 commit 3093905
Show file tree
Hide file tree
Showing 22 changed files with 78 additions and 78 deletions.
2 changes: 1 addition & 1 deletion source/faq.txt
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Why Does the Driver Throw a Timeout During Server Selection?
Each driver operation requires that you choose a healthy server
satisfying the :manual:`server selection criteria
</core/read-preference-mechanics>`. If you do not select an appropriate
server within the `server selection timeout <{+new-api-root+}/MongoDB.Driver.Legacy/MongoDB.Driver.MongoServerSettings.html#MongoDB_Driver_MongoServerSettings_ServerSelectionTimeout>`__, the driver throws a
server within the `server selection timeout <{+new-api-root+}/MongoDB.Driver.Legacy/MongoDB.Driver.MongoServerSettings.ServerSelectionTimeout.html>`__, the driver throws a
server selection timeout exception. The exception looks similar to the
following:

Expand Down
4 changes: 2 additions & 2 deletions source/fundamentals/authentication.txt
Original file line number Diff line number Diff line change
Expand Up @@ -397,5 +397,5 @@ guide, see the following API Documentation:
- `MongoCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.html>`__
- `MongoClient() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoClient.html>`__
- `MongoClientSettings <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoClientSettings.html>`__
- `CreateCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.html#MongoDB_Driver_MongoCredential_CreateCredential_System_String_System_String_System_Security_SecureString_>`__
- `CreateMongoX509Credential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.html#MongoDB_Driver_MongoCredential_CreateMongoX509Credential_System_String_>`__
- `CreateCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.CreateCredential.html>`__
- `CreateMongoX509Credential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.CreateMongoX509Credential.html>`__
2 changes: 1 addition & 1 deletion source/fundamentals/builders.txt
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ The preceding example creates the following pipeline:
You can add stages to your pipeline that don't have corresponding type-safe
methods in the ``PipelineDefinitionBuilder`` interface by providing your query
as a ``BsonDocument`` to the `AppendStage() method
<{+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__>`__.
<{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.PipelineDefinitionBuilder.AppendStage.html>`__.

.. code-block:: csharp

Expand Down
4 changes: 2 additions & 2 deletions source/fundamentals/crud/read-operations/count.txt
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ API Documentation
To learn more about any of the methods or types discussed in this
guide, see the following API Documentation:

- `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_>`__
- `CountDocuments() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.CountDocuments.html>`__
- `CountOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.CountOptions.html>`__
- `EstimatedDocumentCount() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCollectionBase-1.html>`__
- `EstimatedDocumentCount() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCollectionBase-1.EstimatedDocumentCount.html>`__
- `EstimatedDocumentCountOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.EstimatedDocumentCountOptions.html>`__
14 changes: 7 additions & 7 deletions source/fundamentals/crud/read-operations/retrieve.txt
Original file line number Diff line number Diff line change
Expand Up @@ -288,11 +288,11 @@ API Documentation
To learn more about any of the methods or types discussed in this
guide, see the following API Documentation:

- `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_>`__
- `FirstOrDefault() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IFindFluentExtensions.html#MongoDB_Driver_IFindFluentExtensions_FirstOrDefault__2_MongoDB_Driver_IFindFluent___0___1__System_Threading_CancellationToken_>`__
- `FirstOrDefaultAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSourceExtensions.html#MongoDB_Driver_IAsyncCursorSourceExtensions_FirstOrDefaultAsync__1_MongoDB_Driver_IAsyncCursorSource___0__System_Threading_CancellationToken_>`__
- `Find() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollectionExtensions.Find.html>`__
- `FirstOrDefault() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IFindFluentExtensions.FirstOrDefault.html>`__
- `FirstOrDefaultAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSourceExtensions.FirstOrDefaultAsync.html>`__
- `FindOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.FindOptions.html>`__
- `ToList() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSourceExtensions.html#MongoDB_Driver_IAsyncCursorSourceExtensions_ToList__1_MongoDB_Driver_IAsyncCursorSource___0__System_Threading_CancellationToken_>`__
- `ToListAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSourceExtensions.html#MongoDB_Driver_IAsyncCursorSourceExtensions_FirstOrDefaultAsync__1_MongoDB_Driver_IAsyncCursorSource___0__System_Threading_CancellationToken_>`__
- `ToCursor() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSource-1.html#MongoDB_Driver_IAsyncCursorSource_1_ToCursor_System_Threading_CancellationToken_>`__
- `ToCursorAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSource-1.html#MongoDB_Driver_IAsyncCursorSource_1_ToCursorAsync_System_Threading_CancellationToken_>`__
- `ToList() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSourceExtensions.ToList.html>`__
- `ToListAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSourceExtensions.FirstOrDefaultAsync.html>`__
- `ToCursor() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSource-1.ToCursor.html>`__
- `ToCursorAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IAsyncCursorSource-1.ToCursorAsync.html>`__
8 changes: 4 additions & 4 deletions source/fundamentals/crud/write-operations/delete.txt
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,9 @@ API Documentation
To learn more about any of the methods or types discussed in this
guide, see the following API Documentation:

- `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_>`__
- `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_>`__
- `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_>`__
- `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_>`__
- `DeleteOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.DeleteOne.html>`__
- `DeleteOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.DeleteOneAsync.html>`__
- `DeleteMany() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.DeleteMany.html>`__
- `DeleteManyAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.DeleteManyAsync.html>`__
- `DeleteOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.DeleteOptions.html>`__
- `DeleteResult <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.DeleteResult.html>`__
8 changes: 4 additions & 4 deletions source/fundamentals/crud/write-operations/insert.txt
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,9 @@ API Documentation
To learn more about any of the methods or types discussed in this
guide, see the following API Documentation:

- `InsertOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_InsertOne__0_MongoDB_Driver_InsertOneOptions_System_Threading_CancellationToken_>`__
- `InsertOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.html#MongoDB_Driver_IMongoCollection_1_InsertOneAsync__0_MongoDB_Driver_InsertOneOptions_System_Threading_CancellationToken_>`__
- `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_>`__
- `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_>`__
- `InsertOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.InsertOne.html>`__
- `InsertOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.InsertOneAsync.html>`__
- `InsertMany() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.InsertMany.html>`__
- `InsertManyAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.InsertManyAsync.html>`__
- `InsertOneOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.InsertOneOptions.html>`__
- `InsertManyOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.InsertManyOptions.html>`__
12 changes: 6 additions & 6 deletions source/fundamentals/crud/write-operations/modify.txt
Original file line number Diff line number Diff line change
Expand Up @@ -525,13 +525,13 @@ API Documentation
To learn more about any of the methods or types discussed in this
guide, see the following API documentation:

* `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_>`__
* `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_>`__
* `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_>`__
* `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_>`__
* `UpdateOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.UpdateOne.html>`__
* `UpdateOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.UpdateOneAsync.html>`__
* `UpdateMany() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.UpdateMany.html>`__
* `UpdateManyAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.UpdateManyAsync.html>`__
* `UpdateOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.UpdateOptions.html>`__
* `UpdateResult <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.UpdateResult.html>`__
* `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_>`__
* `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_>`__
* `ReplaceOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.ReplaceOne.html>`__
* `ReplaceOneAsync() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.ReplaceOneAsync.html>`__
* `ReplaceOptions <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.ReplaceOptions.html>`__
* `ReplaceOneResult <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.ReplaceOneResult.html>`__
4 changes: 2 additions & 2 deletions source/fundamentals/enterprise-authentication.txt
Original file line number Diff line number Diff line change
Expand Up @@ -264,5 +264,5 @@ guide, see the following API Documentation:
- `MongoCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.html>`__
- `MongoClient() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoClient.html>`__
- `MongoClientSettings <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoClientSettings.html>`__
- `CreateGssapiCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.html#MongoDB_Driver_MongoCredential_CreateGssapiCredential_System_String_>`__
- `CreatePlainCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.html#MongoDB_Driver_MongoCredential_CreatePlainCredential_System_String_System_String_System_Security_SecureString_>`__
- `CreateGssapiCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.CreateGssapiCredential.html>`__
- `CreatePlainCredential() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.MongoCredential.CreatePlainCredential.html>`__
2 changes: 1 addition & 1 deletion source/fundamentals/serialization.txt
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ see the following pages:
To learn more about any of the methods or types discussed in this
guide, see the following API documentation:

- `SerializerRegistry <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.BsonSerializer.html#MongoDB_Bson_Serialization_BsonSerializer_SerializerRegistry>`__
- `SerializerRegistry <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.BsonSerializer.SerializerRegistry.html>`__
- `BsonSerializer <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.BsonSerializer.html>`__
- `IBsonSerializer <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.IBsonSerializer.html>`__
- `SerializerBase<T> <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.Serializers.SerializerBase-1.html>`__
4 changes: 2 additions & 2 deletions source/fundamentals/serialization/class-mapping.txt
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,6 @@ API Documentation
- `BsonClassMap
<{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.BsonClassMap.html>`__
- `RegisterClassMap
<{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.BsonClassMap.html#MongoDB_Bson_Serialization_BsonClassMap_RegisterClassMap_MongoDB_Bson_Serialization_BsonClassMap_>`__
<{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.BsonClassMap.RegisterClassMap.html>`__
- `AutoMap
<{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.BsonClassMap.html#MongoDB_Bson_Serialization_BsonClassMap_AutoMap>`__
<{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.BsonClassMap.AutoMap.html>`__
2 changes: 1 addition & 1 deletion source/fundamentals/serialization/poco.txt
Original file line number Diff line number Diff line change
Expand Up @@ -292,4 +292,4 @@ guide, see the following API documentation:
- `[BsonId()] <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.Attributes.BsonIdAttribute.html>`__
- `[BsonIgnore()] <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.Attributes.BsonIgnoreAttribute.html>`__
- `ConventionPack <{+new-api-root+}/MongoDB.Bson/MongoDB.Bson.Serialization.Conventions.ConventionPack.html>`__
- `InsertOne() <{+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_>`__
- `InsertOne() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.IMongoCollection-1.InsertMany.html>`__
Loading

0 comments on commit 3093905

Please sign in to comment.