編輯

共用方式為


RedisClusteringException Constructors

Definition

Overloads

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

RedisClusteringException()

Source:
RedisClusteringException.cs
Source:
RedisClusteringException.cs

Initializes a new instance of the Exception class.

public RedisClusteringException();
Public Sub New ()

Applies to

RedisClusteringException(String)

Source:
RedisClusteringException.cs
Source:
RedisClusteringException.cs

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

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

Parameters

message
String

Applies to

RedisClusteringException(SerializationInfo, StreamingContext)

Source:
RedisClusteringException.cs
Source:
RedisClusteringException.cs

Caution

This API is now deprecated.

Obsolete.

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

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

Parameters

Attributes

Applies to

RedisClusteringException(String, Exception)

Source:
RedisClusteringException.cs
Source:
RedisClusteringException.cs

Initializes a new instance of the Exception class with a specified error message and a reference to the inner exception that is the cause of this exception.

public RedisClusteringException(string message, Exception innerException);
new Orleans.Clustering.Redis.RedisClusteringException : string * Exception -> Orleans.Clustering.Redis.RedisClusteringException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String
innerException
Exception

Applies to