Skip to content

Commit ba52358

Browse files
committed
Fix Sandcastle warnings.
1 parent 29f35e8 commit ba52358

File tree

5 files changed

+12
-1
lines changed

5 files changed

+12
-1
lines changed

Docs/Api/CSharpDriverDocs.shfbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
<CopyrightText>Copyright &amp;#169%3b 2010&amp;ndash%3bpresent MongoDB Inc.</CopyrightText>
8080
<FeedbackEMailAddress>dotnet-driver%40mongodb.com</FeedbackEMailAddress>
8181
<FeedbackEMailLinkText>MongoDB</FeedbackEMailLinkText>
82-
<FrameworkVersion>.NET Framework 4.5.2</FrameworkVersion>
82+
<FrameworkVersion>.NET Framework 4.7.2</FrameworkVersion>
8383
<HelpFileVersion>0.0.0.0</HelpFileVersion>
8484
<MissingTags>Summary, Parameter, Returns, AutoDocumentCtors, Namespace, TypeParameter, AutoDocumentDispose</MissingTags>
8585
<SyntaxFilters>C#, Visual Basic, F#</SyntaxFilters>

src/MongoDB.Driver/ChangeStreamPreAndPostImagesOptions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public ChangeStreamPreAndPostImagesOptions()
3636
/// <summary>
3737
/// Initializes a new instance of the <see cref="ChangeStreamPreAndPostImagesOptions"/> class.
3838
/// </summary>
39+
/// <param name="bsonDocument">The backing document.</param>
3940
public ChangeStreamPreAndPostImagesOptions(BsonDocument bsonDocument)
4041
: base(bsonDocument, ChangeStreamPreAndPostImagesOptionsSerializer.Instance)
4142
{

src/MongoDB.Driver/ClusteredIndexOptions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ namespace MongoDB.Driver
2121
/// <summary>
2222
/// Options for creating a clustered index.
2323
/// </summary>
24+
/// <typeparam name="TDocument">The document type.</typeparam>
2425
public class ClusteredIndexOptions<TDocument>
2526
{
2627
private IndexKeysDefinition<TDocument> _key;

src/MongoDB.Driver/IAggregateFluent.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,9 @@ IAggregateFluent<TNewResult> BucketAuto<TValue, TNewResult>(
140140
/// <summary>
141141
/// Appends a $densify stage to the pipeline.
142142
/// </summary>
143+
/// <param name="field">The field.</param>
144+
/// <param name="range">The range.</param>
145+
/// <param name="partitionByFields">The fields to partition by.</param>
143146
/// <returns>The fluent aggregate interface.</returns>
144147
IAggregateFluent<TResult> Densify(
145148
FieldDefinition<TResult> field,
@@ -149,6 +152,9 @@ IAggregateFluent<TResult> Densify(
149152
/// <summary>
150153
/// Appends a $densify stage to the pipeline.
151154
/// </summary>
155+
/// <param name="field">The field.</param>
156+
/// <param name="range">The range.</param>
157+
/// <param name="partitionByFields">The fields to partition by.</param>
152158
/// <returns>The fluent aggregate interface.</returns>
153159
IAggregateFluent<TResult> Densify(
154160
FieldDefinition<TResult> field,

src/MongoDB.Driver/StringOrRegularExpression.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,21 @@ public class StringOrRegularExpression
2929
/// Implicit conversion from string to StringOrRegularExpression.
3030
/// </summary>
3131
/// <param name="value">A StringOrRegularExpression.</param>
32+
/// <returns>A StringOrRegularExpression.</returns>
3233
public static implicit operator StringOrRegularExpression(string value) => new StringOrRegularExpression(value);
3334

3435
/// <summary>
3536
/// Implicit conversion from BsonRegularExpression to StringOrRegularExpression.
3637
/// </summary>
3738
/// <param name="value">A StringOrRegularExpression.</param>
39+
/// <returns>A StringOrRegularExpression.</returns>
3840
public static implicit operator StringOrRegularExpression(BsonRegularExpression value) => new StringOrRegularExpression(value);
3941

4042
/// <summary>
4143
/// Implicit conversion from Regex to StringOrRegularExpression.
4244
/// </summary>
4345
/// <param name="value">A StringOrRegularExpression.</param>
46+
/// <returns>A StringOrRegularExpression.</returns>
4447
public static implicit operator StringOrRegularExpression(Regex value) => new StringOrRegularExpression(new BsonRegularExpression(value));
4548
#endregion
4649

0 commit comments

Comments
 (0)