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!

WfcInstallContext Constructor

Initializes a new instance of the WfcInstallContext class.

[Visual Basic]
Public Sub New( _
   ByVal logFilePath As String, _
   ByVal commandLine() As String _
)
[C#]
public WfcInstallContext(
   string logFilePath,
   string[] commandLine
);
[C++]
public: WfcInstallContext(
   String* logFilePath,
   String* commandLine[]
);
[JScript]
public function WfcInstallContext(
   logFilePath : String,
   commandLine : String[]
);

Parameters

logFilePath
The path to the log file for this installation, or a null reference (in Visual Basic Nothing).
commandLine
The command line parameters entered when WfcInstall.exe was run.

Remarks

A log file is created over the given path, andis parsed into Parameters. Typically, a WfcInstallContext would be created by WfcInstall.exe. No log file is created if a command line argument of "/logfile=" is passed

See Also

WfcInstallContext Class | WfcInstallContext Members | System.Configuration.Install Namespace | Parameters