Skip to content

Latest commit

 

History

History
56 lines (43 loc) · 1.83 KB

SA1614.md

File metadata and controls

56 lines (43 loc) · 1.83 KB

SA1614

TypeName SA1614ElementParameterDocumentationMustHaveText
CheckId SA1614
Category Documentation Rules

Cause

A <param> tag within a C# element's documentation header is empty.

Rule description

C# syntax provides a mechanism for inserting documentation for classes and elements directly into the code, through the use of Xml documentation headers. For an introduction to these headers and a description of the header syntax, see the following article: https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/xmldoc/xml-documentation-comments.

A violation of this rule occurs if the documentation for an element contains a <param> tag which is empty and does not contain a description of the parameter.

How to fix violations

To fix a violation of this rule, fill-in a description of the parameter within the <param> tag.

The following example shows a method with a valid documentation header:

/// <summary>
/// Joins a first name and a last name together into a single string.
/// </summary>
/// <param name="firstName">The first name to join.</param>
/// <param name="lastName">The last name to join.</param>
/// <returns>The joined names.</returns>
public string JoinNames(string firstName, string lastName)
{
    return firstName + " " + lastName;
}

How to suppress violations

[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1614:ElementParameterDocumentationMustHaveText", Justification = "Reviewed.")]
#pragma warning disable SA1614 // ElementParameterDocumentationMustHaveText
#pragma warning restore SA1614 // ElementParameterDocumentationMustHaveText