PartitionException 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
PartitionException(SerializationInfo, StreamingContext) |
Initializes a new instance of the PartitionException class using default values. |
PartitionException(String, String) |
Initializes a new instance of the PartitionException class using error message and last continuation token. |
PartitionException(String, String, Exception) |
Initializes a new instance of the PartitionException class using error message and inner exception. |
PartitionException(SerializationInfo, StreamingContext)
Initializes a new instance of the PartitionException class using default values.
protected PartitionException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.PartitionException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.PartitionException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
The SerializationInfo object that holds serialized object data for the exception being thrown.
- context
- StreamingContext
The StreamingContext that contains contextual information about the source or destination.
Applies to
PartitionException(String, String)
Initializes a new instance of the PartitionException class using error message and last continuation token.
protected PartitionException (string message, string lastContinuation);
new Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.PartitionException : string * string -> Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.PartitionException
Protected Sub New (message As String, lastContinuation As String)
Parameters
- message
- String
The exception error message.
- lastContinuation
- String
Request continuation token.
Applies to
PartitionException(String, String, Exception)
Initializes a new instance of the PartitionException class using error message and inner exception.
protected PartitionException (string message, string lastContinuation, Exception innerException);
new Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.PartitionException : string * string * Exception -> Microsoft.Azure.Documents.ChangeFeedProcessor.Exceptions.PartitionException
Protected Sub New (message As String, lastContinuation As String, innerException As Exception)
Parameters
- message
- String
The exception error message.
- lastContinuation
- String
Request continuation token.
- innerException
- Exception
The inner exception.