File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 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)
267267 /// <summary>
268268 /// Gets all registered class maps.
269269 /// </summary>
270+ /// <returns>All registered class maps.</returns>
270271 public static IEnumerable < BsonClassMap > GetRegisteredClassMaps ( )
271272 {
272273 return __classMaps . Values ;
Original file line number Diff line number Diff line change @@ -392,6 +392,7 @@ public WriteConcern WriteConcern
392392 /// <summary>
393393 /// Gets a MongoClientSettings object intialized with values from a connection string builder.
394394 /// </summary>
395+ /// <param name="builder">The connection string builder.</param>
395396 /// <returns>A MongoClientSettings.</returns>
396397 public static MongoClientSettings FromConnectionStringBuilder ( MongoConnectionStringBuilder builder )
397398 {
@@ -426,8 +427,9 @@ public static MongoClientSettings FromConnectionStringBuilder(MongoConnectionStr
426427 }
427428
428429 /// <summary>
429- /// Gets a MongoClientSettings object intialized with values from a URL .
430+ /// Gets a MongoClientSettings object intialized with values from a MongoURL .
430431 /// </summary>
432+ /// <param name="url">The MongoURL.</param>
431433 /// <returns>A MongoClientSettings.</returns>
432434 public static MongoClientSettings FromUrl ( MongoUrl url )
433435 {
Original file line number Diff line number Diff line change @@ -519,8 +519,8 @@ public WriteConcern WriteConcern
519519 /// <summary>
520520 /// Creates a new MongoServerSettings object from a MongoClientSettings object.
521521 /// </summary>
522- /// <param name="clientSettings"></param>
523- /// <returns></returns>
522+ /// <param name="clientSettings">The MongoClientSettings. </param>
523+ /// <returns>A MongoServerSettings. </returns>
524524 public static MongoServerSettings FromClientSettings ( MongoClientSettings clientSettings )
525525 {
526526 var serverSettings = new MongoServerSettings ( ) ;
@@ -550,6 +550,7 @@ public static MongoServerSettings FromClientSettings(MongoClientSettings clientS
550550 /// <summary>
551551 /// Gets a MongoServerSettings object intialized with values from a MongoConnectionStringBuilder.
552552 /// </summary>
553+ /// <param name="builder">The MongoConnectionStringBuilder.</param>
553554 /// <returns>A MongoServerSettings.</returns>
554555 public static MongoServerSettings FromConnectionStringBuilder ( MongoConnectionStringBuilder builder )
555556 {
@@ -586,8 +587,9 @@ public static MongoServerSettings FromConnectionStringBuilder(MongoConnectionStr
586587 }
587588
588589 /// <summary>
589- /// Gets a MongoServerSettings object intialized with values from a URL .
590+ /// Gets a MongoServerSettings object intialized with values from a MongoUrl .
590591 /// </summary>
592+ /// <param name="url">The MongoUrl.</param>
591593 /// <returns>A MongoServerSettings.</returns>
592594 public static MongoServerSettings FromUrl ( MongoUrl url )
593595 {
You can’t perform that action at this time.
0 commit comments