RedisStorageException Constructors
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.
Overloads
RedisStorageException() |
Initializes a new instance of RedisStorageException. |
RedisStorageException(String) |
Initializes a new instance of RedisStorageException. |
RedisStorageException(SerializationInfo, StreamingContext) |
Obsolete.
|
RedisStorageException(String, Exception) |
Initializes a new instance of RedisStorageException. |
RedisStorageException()
Initializes a new instance of RedisStorageException.
public RedisStorageException();
Public Sub New ()
Applies to
RedisStorageException(String)
Initializes a new instance of RedisStorageException.
public RedisStorageException(string message);
new Orleans.Persistence.Redis.RedisStorageException : string -> Orleans.Persistence.Redis.RedisStorageException
Public Sub New (message As String)
Parameters
- message
- String
The error message that explains the reason for the exception.
Applies to
RedisStorageException(SerializationInfo, StreamingContext)
Caution
This API is now deprecated.
Initializes a new instance of the Exception class with serialized data.
[System.Obsolete]
protected RedisStorageException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[<System.Obsolete>]
new Orleans.Persistence.Redis.RedisStorageException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Orleans.Persistence.Redis.RedisStorageException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
- context
- StreamingContext
- Attributes
Applies to
RedisStorageException(String, Exception)
Initializes a new instance of RedisStorageException.
public RedisStorageException(string message, Exception inner);
new Orleans.Persistence.Redis.RedisStorageException : string * Exception -> Orleans.Persistence.Redis.RedisStorageException
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.