exclude
This element is used to indicate that a particular type or member should be excluded from the documentation.
Syntax
This top-level element is valid on all types and type members.
<exclude />Remarks
This element takes precedence over all other visibility options and the type or member will not appear in the resulting help file at all.
Example
/// <summary>
/// This method will not appear in the help file even though it is public.
/// </summary>
/// <exclude />
public void UndocumentedMethod()
{
}See Also
Other Resources
Miscellaneous Elements