Code Example Info Constructor
Initializes a new instance of the CodeExampleInfo class.
Definition
Namespace: Novacta.Documentation.CodeExamples
Assembly: Novacta.Documentation.CodeExamples (in Novacta.Documentation.CodeExamples.dll) Version: 2.0.0+d0711904e187765f05e6dc698044fce33381798b
Assembly: Novacta.Documentation.CodeExamples (in Novacta.Documentation.CodeExamples.dll) Version: 2.0.0+d0711904e187765f05e6dc698044fce33381798b
C#
public CodeExampleInfo(
Type type,
string sourceCodePath,
ProgrammingLanguage language,
bool isCodeAsynchronous
)VB
Public Sub New (
type As Type,
sourceCodePath As String,
language As ProgrammingLanguage,
isCodeAsynchronous As Boolean
)C++
public:
CodeExampleInfo(
Type^ type,
String^ sourceCodePath,
ProgrammingLanguage^ language,
bool isCodeAsynchronous
)F#
new :
type : Type *
sourceCodePath : string *
language : ProgrammingLanguage *
isCodeAsynchronous : bool -> CodeExampleInfoParameters
- type Type
- The type of the example.
- sourceCodePath String
- The source code path where the example type is defined.
- language ProgrammingLanguage
- The programming language in which the example has been coded.
- isCodeAsynchronous Boolean
- A value signaling if the example has asynchronous code.