| SandcastleProject Constructor (String, Boolean) |
Load a Sandcastle Builder project from the given filename.
Namespace: SandcastleBuilder.UtilsAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public SandcastleProject(
string filename,
bool mustExist
)
Public Sub New (
filename As String,
mustExist As Boolean
)
public:
SandcastleProject(
String^ filename,
bool mustExist
)
new :
filename : string *
mustExist : bool -> SandcastleProject
Parameters
- filename
- Type: SystemString
The filename to load - mustExist
- Type: SystemBoolean
Specify true if the file must exist or false if a new project should be
created if the file does not exist.
Exceptions Exception | Condition |
---|
ArgumentException | This is thrown if a filename is not specified or if it does not
exist and mustExist is true. |
See Also