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!

CompilerParameters Constructor

Initializes a new instance of CompilerParameters.

Overload List

Initializes a new instance of CompilerParameters.

[Visual Basic] Overloads Public Sub New()
[C#] public CompilerParameters();
[C++] public: CompilerParameters();
[JScript] public function CompilerParameters();

Initializes a new instance of CompilerParameters using the specified assembly names.

[Visual Basic] Overloads Public Sub New(String())
[C#] public CompilerParameters(String[]);
[C++] public: CompilerParameters(String*[]);
[JScript] public function CompilerParameters(String[]);

Initializes a new instance of CompilerParameters using the specified assembly names and output name.

[Visual Basic] Overloads Public Sub New(String(), String)
[C#] public CompilerParameters(String[], String);
[C++] public: CompilerParameters(String*[], String*);
[JScript] public function CompilerParameters(String[], String);

Initializes a new instance of CompilerParameters using the specified assembly names, output name and a whether to include debug information flag.

[Visual Basic] Overloads Public Sub New(String(), String, Boolean)
[C#] public CompilerParameters(String[], String, bool);
[C++] public: CompilerParameters(String*[], String*, bool);
[JScript] public function CompilerParameters(String[], String, Boolean);

See Also

CompilerParameters Class | CompilerParameters Members | System.CodeDOM.Compiler Namespace