ServiceUnavailableException Constructors

Definition

Overloads

ServiceUnavailableException(Type)

Instantiates a new instance of ServiceUnavailableException for the specified type of service,

ServiceUnavailableException(Type, Exception)

Instantiates a new instance of ServiceUnavailableException for the specified type of service and inner exception,

ServiceUnavailableException(Type)

Instantiates a new instance of ServiceUnavailableException for the specified type of service,

public:
 ServiceUnavailableException(Type ^ serviceType);
public:
 ServiceUnavailableException(Platform::Type ^ serviceType);
public ServiceUnavailableException (Type serviceType);
new Microsoft.VisualStudio.Shell.ServiceUnavailableException : Type -> Microsoft.VisualStudio.Shell.ServiceUnavailableException
Public Sub New (serviceType As Type)

Parameters

serviceType
Type

The service type.

Applies to

ServiceUnavailableException(Type, Exception)

Instantiates a new instance of ServiceUnavailableException for the specified type of service and inner exception,

public:
 ServiceUnavailableException(Type ^ serviceType, Exception ^ innerException);
public ServiceUnavailableException (Type serviceType, Exception innerException);
new Microsoft.VisualStudio.Shell.ServiceUnavailableException : Type * Exception -> Microsoft.VisualStudio.Shell.ServiceUnavailableException
Public Sub New (serviceType As Type, innerException As Exception)

Parameters

serviceType
Type

The service type.

innerException
Exception

The inner exception.

Applies to