編輯

共用方式為


RedisRemindersException Constructors

Definition

Overloads

RedisRemindersException()

Initializes a new instance of RedisRemindersException.

RedisRemindersException(String)

Initializes a new instance of RedisRemindersException.

RedisRemindersException(SerializationInfo, StreamingContext)
Obsolete.
RedisRemindersException(String, Exception)

Initializes a new instance of RedisRemindersException.

RedisRemindersException()

Initializes a new instance of RedisRemindersException.

public RedisRemindersException();
Public Sub New ()

Applies to

RedisRemindersException(String)

Initializes a new instance of RedisRemindersException.

public RedisRemindersException(string message);
new Orleans.Reminders.Redis.RedisRemindersException : string -> Orleans.Reminders.Redis.RedisRemindersException
Public Sub New (message As String)

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

RedisRemindersException(SerializationInfo, StreamingContext)

Caution

This API is now deprecated.

Obsolete.

Initializes a new instance of the Exception class with serialized data.

[System.Obsolete]
protected RedisRemindersException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[<System.Obsolete>]
new Orleans.Reminders.Redis.RedisRemindersException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Orleans.Reminders.Redis.RedisRemindersException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

Attributes

Applies to

RedisRemindersException(String, Exception)

Initializes a new instance of RedisRemindersException.

public RedisRemindersException(string message, Exception inner);
new Orleans.Reminders.Redis.RedisRemindersException : string * Exception -> Orleans.Reminders.Redis.RedisRemindersException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

inner
Exception

The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.

Applies to