C# Class csscript.CompilerException

Inheritance: System.ApplicationException
ファイルを表示 Open project: oleg-shilo/cs-script Class Usage Examples

Public Methods

Method Description
CompilerException ( ) : System

Gets or sets the errors.

Initializes a new instance of the CompilerException class.

CompilerException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the CompilerException class.

CompilerException ( string message ) : System

Initializes a new instance of the CompilerException class.

Create ( CompilerErrorCollection Errors, bool hideCompilerWarnings ) : CompilerException

Creates the CompilerException instance from the specified compiler errors.

Method Details

CompilerException() public method

Gets or sets the errors. Initializes a new instance of the CompilerException class.
public CompilerException ( ) : System
return System

CompilerException() public method

Initializes a new instance of the CompilerException class.
public CompilerException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The object that holds the serialized object data.
context System.Runtime.Serialization.StreamingContext The contextual information about the source or destination.
return System

CompilerException() public method

Initializes a new instance of the CompilerException class.
public CompilerException ( string message ) : System
message string The message.
return System

Create() public static method

Creates the CompilerException instance from the specified compiler errors.
public static Create ( CompilerErrorCollection Errors, bool hideCompilerWarnings ) : CompilerException
Errors System.CodeDom.Compiler.CompilerErrorCollection The compiler errors.
hideCompilerWarnings bool if set to true hide compiler warnings.
return CompilerException