 | CodeExamplesAnalyzer Constructor |
Initializes a new instance of the
CodeExamplesAnalyzer class with the specified
default namespace and code base.
Namespace:
Novacta.Documentation.CodeExamples
Assembly:
Novacta.Documentation.CodeExamples (in Novacta.Documentation.CodeExamples.dll) Version: 1.0.0
Syntaxpublic CodeExamplesAnalyzer(
string codeBase,
string defaultNamespace
)
Public Sub New (
codeBase As String,
defaultNamespace As String
)
public:
CodeExamplesAnalyzer(
String^ codeBase,
String^ defaultNamespace
)
new :
codeBase : string *
defaultNamespace : string -> CodeExamplesAnalyzer
Parameters
- codeBase
- Type: SystemString
The root path of the directory tree
where code example files are stored. - defaultNamespace
- Type: SystemString
The default namespace.
ExceptionsException | Condition |
---|
ArgumentNullException | defaultNamespace is null.
|
ArgumentException |
The directory specified in parameter codeBase does
not exist or an error occurs when trying to determine
if the specified path exists.
|
See Also