File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -267,6 +267,7 @@ public static Type GetMemberInfoType(MemberInfo memberInfo)
267
267
/// <summary>
268
268
/// Gets all registered class maps.
269
269
/// </summary>
270
+ /// <returns>All registered class maps.</returns>
270
271
public static IEnumerable < BsonClassMap > GetRegisteredClassMaps ( )
271
272
{
272
273
return __classMaps . Values ;
Original file line number Diff line number Diff line change @@ -392,6 +392,7 @@ public WriteConcern WriteConcern
392
392
/// <summary>
393
393
/// Gets a MongoClientSettings object intialized with values from a connection string builder.
394
394
/// </summary>
395
+ /// <param name="builder">The connection string builder.</param>
395
396
/// <returns>A MongoClientSettings.</returns>
396
397
public static MongoClientSettings FromConnectionStringBuilder ( MongoConnectionStringBuilder builder )
397
398
{
@@ -426,8 +427,9 @@ public static MongoClientSettings FromConnectionStringBuilder(MongoConnectionStr
426
427
}
427
428
428
429
/// <summary>
429
- /// Gets a MongoClientSettings object intialized with values from a URL .
430
+ /// Gets a MongoClientSettings object intialized with values from a MongoURL .
430
431
/// </summary>
432
+ /// <param name="url">The MongoURL.</param>
431
433
/// <returns>A MongoClientSettings.</returns>
432
434
public static MongoClientSettings FromUrl ( MongoUrl url )
433
435
{
Original file line number Diff line number Diff line change @@ -519,8 +519,8 @@ public WriteConcern WriteConcern
519
519
/// <summary>
520
520
/// Creates a new MongoServerSettings object from a MongoClientSettings object.
521
521
/// </summary>
522
- /// <param name="clientSettings"></param>
523
- /// <returns></returns>
522
+ /// <param name="clientSettings">The MongoClientSettings. </param>
523
+ /// <returns>A MongoServerSettings. </returns>
524
524
public static MongoServerSettings FromClientSettings ( MongoClientSettings clientSettings )
525
525
{
526
526
var serverSettings = new MongoServerSettings ( ) ;
@@ -550,6 +550,7 @@ public static MongoServerSettings FromClientSettings(MongoClientSettings clientS
550
550
/// <summary>
551
551
/// Gets a MongoServerSettings object intialized with values from a MongoConnectionStringBuilder.
552
552
/// </summary>
553
+ /// <param name="builder">The MongoConnectionStringBuilder.</param>
553
554
/// <returns>A MongoServerSettings.</returns>
554
555
public static MongoServerSettings FromConnectionStringBuilder ( MongoConnectionStringBuilder builder )
555
556
{
@@ -586,8 +587,9 @@ public static MongoServerSettings FromConnectionStringBuilder(MongoConnectionStr
586
587
}
587
588
588
589
/// <summary>
589
- /// Gets a MongoServerSettings object intialized with values from a URL .
590
+ /// Gets a MongoServerSettings object intialized with values from a MongoUrl .
590
591
/// </summary>
592
+ /// <param name="url">The MongoUrl.</param>
591
593
/// <returns>A MongoServerSettings.</returns>
592
594
public static MongoServerSettings FromUrl ( MongoUrl url )
593
595
{
You can’t perform that action at this time.
0 commit comments