ServiceActivationException Constructors

Definition

Initializes a new instance of the ServiceActivationException class.

Overloads

ServiceActivationException()

Initializes a new instance of the ServiceActivationException class.

ServiceActivationException(String)

Initializes a new instance of the ServiceActivationException class with a specified error message.

ServiceActivationException(SerializationInfo, StreamingContext)

Initializes a new instance of the ServiceActivationException class with serialization information and streaming context specified.

ServiceActivationException(String, Exception)

Initializes a new instance of the ServiceActivationException class with a specified error message and the inner exception provided.

ServiceActivationException()

Source:
ServiceActivationException.cs
Source:
ServiceActivationException.cs

Initializes a new instance of the ServiceActivationException class.

C#
public ServiceActivationException();

Applies to

.NET Framework 4.8.1 e outras versións
Produto Versións
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

ServiceActivationException(String)

Source:
ServiceActivationException.cs
Source:
ServiceActivationException.cs

Initializes a new instance of the ServiceActivationException class with a specified error message.

C#
public ServiceActivationException(string message);

Parameters

message
String

The error message that explains the reason for the exception.

Remarks

Use this constructor when you want to pass an error message to the user. The content of the message parameter should be understandable to the user. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

Applies to

.NET 10 (package-provided) e outras versións
Produto Versións
.NET Core 1.0, Core 1.1, 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
UWP 10.0

ServiceActivationException(SerializationInfo, StreamingContext)

Source:
ServiceActivationException.cs
Source:
ServiceActivationException.cs

Initializes a new instance of the ServiceActivationException class with serialization information and streaming context specified.

C#
protected ServiceActivationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);

Parameters

info
SerializationInfo

The SerializationInfo that contains all the data required to serialize the exception.

context
StreamingContext

The StreamingContext that specifies the source and destination of the stream.

Remarks

This constructor is called during deserialization to reconstruct the exception object transmitted over a stream.

Applies to

.NET 10 (package-provided) e outras versións
Produto Versións
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

ServiceActivationException(String, Exception)

Source:
ServiceActivationException.cs
Source:
ServiceActivationException.cs

Initializes a new instance of the ServiceActivationException class with a specified error message and the inner exception provided.

C#
public ServiceActivationException(string message, Exception innerException);

Parameters

message
String

The error message that explains the reason for the exception.

innerException
Exception

The Exception that caused the current exception to be thrown.

Remarks

Use this constructor when you want to pass an error message and information about an inner exception up to the user.

An exception that is thrown as a direct result of a previous exception can include a reference to the previous exception in the InnerException property. The InnerException property returns the same value that is passed into the constructor, or a null reference (Nothing in Visual Basic) if the InnerException property does not supply the inner exception value to the constructor.

Applies to

.NET 10 (package-provided) e outras versións
Produto Versións
.NET Core 1.0, Core 1.1, 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
UWP 10.0