HostStartUpException(String, Nullable<Int32>, String) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the HostStartUpException class.
public HostStartUpException (string? message, int? hostExitCode, string standardError);
new Microsoft.ServiceHub.Utility.HostStartUpException : string * Nullable<int> * string -> Microsoft.ServiceHub.Utility.HostStartUpException
Public Sub New (message As String, hostExitCode As Nullable(Of Integer), standardError As String)
Parameters
- message
- String
The exception message.
- standardError
- String
The output of the Host's standard error stream.
Remarks
The standardError
is set as the message of the InnerException to allow that data to be provided to the remote client in the case of this being wrapped in a RemoteInvocationException.