You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the documentInternalElements or documentPrivateElements option is set to false, SA1618:GenericTypeParametersMustBeDocumented should never be reported for those non-public members which are exempted from the documentation requirement. As expected, there is no reported violation for:
private T Foo<T>()
However, it is reported in the following examples:
///
private T Foo<T>()
/**
*
*/
private T Foo<T>()
The text was updated successfully, but these errors were encountered:
sharwell
changed the title
SA1618 reported for non-exposed members even when documentInternalMembers is false
SA1618 reported for non-exposed members even when documentInternalElements is false
Jun 20, 2017
When the
documentInternalElements
ordocumentPrivateElements
option is set to false, SA1618:GenericTypeParametersMustBeDocumented should never be reported for those non-public members which are exempted from the documentation requirement. As expected, there is no reported violation for:However, it is reported in the following examples:
The text was updated successfully, but these errors were encountered: