C# Class BitSharper.Threading.Execution.CancellationException

Inheritance: System.InvalidOperationException
Mostrar archivo Open project: TangibleCryptography/BitSharper

Public Methods

Method Description
CancellationException ( ) : System

Creates a new instance of the BitSharper.Threading.Execution.CancellationException class.

CancellationException ( string message ) : System

Creates a new instance of the BitSharper.Threading.Execution.CancellationException class. with the specified message.

CancellationException ( string message, Exception rootCause ) : System

Creates a new instance of the BitSharper.Threading.Execution.CancellationException class with the specified message and root cause.

Protected Methods

Method Description
CancellationException ( SerializationInfo info, StreamingContext context ) : System

Creates a new instance of the BitSharper.Threading.Execution.CancellationException class.

Method Details

CancellationException() public method

Creates a new instance of the BitSharper.Threading.Execution.CancellationException class.
public CancellationException ( ) : System
return System

CancellationException() protected method

Creates a new instance of the BitSharper.Threading.Execution.CancellationException class.
protected CancellationException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo /// The /// that holds the serialized object data about the exception being thrown. ///
context System.Runtime.Serialization.StreamingContext /// The /// that contains contextual information about the source or destination. ///
return System

CancellationException() public method

Creates a new instance of the BitSharper.Threading.Execution.CancellationException class. with the specified message.
public CancellationException ( string message ) : System
message string A message about the exception.
return System

CancellationException() public method

Creates a new instance of the BitSharper.Threading.Execution.CancellationException class with the specified message and root cause.
public CancellationException ( string message, Exception rootCause ) : System
message string A message about the exception.
rootCause System.Exception The root exception that is being wrapped.
return System