| SandcastleProjectAutoDocumentDisposeMethods Property |
This is used to get or set whether or not dispose methods are
automatically documented if they are missing the <summary>
tag and for classes with compiler generated dispose methods.
Namespace: SandcastleBuilder.UtilsAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public bool AutoDocumentDisposeMethods { get; set; }
Public Property AutoDocumentDisposeMethods As Boolean
Get
Set
public:
property bool AutoDocumentDisposeMethods {
bool get ();
void set (bool value);
}
member AutoDocumentDisposeMethods : bool with get, set
Property Value
Type:
BooleanSet this to true to automatically add default text for the
<summary> tag on dispose methods that are missing it and for
classes with compiler generated dispose methods. If set to false
and
ShowMissingSummaries is true, a "missing summary"
warning will appear instead. A message is also written to the log
file. If a
Dispose(Boolean) method is present, its parameter
will also be auto-documented if necessary. If set to false and
ShowMissingParams is true, a "missing parameter"
message will appear instead.
See Also