NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

CompilerError Constructor (String, Int32, Int32, String, String)

Initializes a new instance of CompilerError using the specified filename, line, column, error number and error text.

[Visual Basic]
Overloads Public Sub New( _
   ByVal fileName As String, _
   ByVal line As Integer, _
   ByVal column As Integer, _
   ByVal errorNumber As String, _
   ByVal errorText As String _
)
[C#]
public CompilerError(
   string fileName,
   int line,
   int column,
   string errorNumber,
   string errorText
);
[C++]
public: CompilerError(
   String* fileName,
   int line,
   int column,
   String* errorNumber,
   String* errorText
);
[JScript]
public function CompilerError(
   fileName : String,
   line : int,
   column : int,
   errorNumber : String,
   errorText : String
);

Parameters

fileName
The filename the compile error occurred compiling source within.
line
[To be supplied.]
column
[To be supplied.]
errorNumber
[To be supplied.]
errorText
[To be supplied.]

See Also

CompilerError Class | CompilerError Members | System.CodeDOM.Compiler Namespace | CompilerError Constructor Overload List