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