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!

InstallContext.Parameters

Gets the command-line arguments that were entered when the installation executable was run.

[Visual Basic]
Overridable Public ReadOnly Property Parameters As StringDictionary
[C#]
public StringDictionary Parameters {virtual get;}
[C++]
public: __property virtual StringDictionary* get_Parameters();
[JScript]
public function get Parameters() : StringDictionary;

Property Value

A StringDictionary representing the command-line arguments that were entered when the installation executable was run.

Remarks

When a new InstallContext is created, the command-line arguments are parsed into the StringDictionary. Both the key and the value of the arguments are of type string. StringDictionary is not case sensitive.

See Also

InstallContext Class | InstallContext Members | System.Configuration.Install Namespace | StringDictionary