SequenceFullException 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.
Initializes a new instance of the SequenceFullException class.
Overloads
SequenceFullException() |
Initializes a new instance of the SequenceFullException class. |
SequenceFullException(String) |
Initializes a new instance of the SequenceFullException class with a specified error message. |
SequenceFullException(SerializationInfo, StreamingContext) |
Initializes a new instance of the SequenceFullException class with serialized data. |
SequenceFullException(String, Exception) |
Initializes a new instance of the SequenceFullException class with a specified error message and a reference to the inner exception that is the cause of this exception. |
SequenceFullException()
Initializes a new instance of the SequenceFullException class.
public:
SequenceFullException();
public SequenceFullException ();
Public Sub New ()
Applies to
SequenceFullException(String)
Initializes a new instance of the SequenceFullException class with a specified error message.
public:
SequenceFullException(System::String ^ message);
public SequenceFullException (string message);
new System.IO.Log.SequenceFullException : string -> System.IO.Log.SequenceFullException
Public Sub New (message As String)
Parameters
- message
- String
The message that describes the error.
Applies to
SequenceFullException(SerializationInfo, StreamingContext)
Initializes a new instance of the SequenceFullException class with serialized data.
protected:
SequenceFullException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected SequenceFullException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IO.Log.SequenceFullException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.Log.SequenceFullException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
The SerializationInfo that holds the serialized object data about the exception being thrown.
- context
- StreamingContext
The StreamingContext that contains contextual information about the source or destination.
Applies to
SequenceFullException(String, Exception)
Initializes a new instance of the SequenceFullException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public:
SequenceFullException(System::String ^ message, Exception ^ inner);
public SequenceFullException (string message, Exception inner);
new System.IO.Log.SequenceFullException : string * Exception -> System.IO.Log.SequenceFullException
Public Sub New (message As String, inner As Exception)
Parameters
- message
- String
The message that describes the error.
- inner
- Exception
The exception that is the cause of the current exception.