C# Class DotNetWorkQueue.Exceptions.PoisonMessageException

Inheritance: MessageException
Exibir arquivo Open project: blehnen/DotNetWorkQueue Class Usage Examples

Public Methods

Method Description
PoisonMessageException ( ) : System

Initializes a new instance of the MessageException class.

PoisonMessageException ( IMessageId messageId, ICorrelationId correlationId, byte messagePayload, byte headerPayload, string format ) : System

Initializes a new instance of the MessageException class.

PoisonMessageException ( string message, Exception inner, IMessageId messageId, ICorrelationId correlationId, byte messagePayload, byte headerPayload ) : System

Initializes a new instance of the MessageException class.

PoisonMessageException ( string message, IMessageId messageId, ICorrelationId correlationId, byte messagePayload, byte headerPayload ) : System

Initializes a new instance of the MessageException class.

Private Methods

Method Description
GetObjectData ( SerializationInfo info, StreamingContext context ) : void

Method Details

PoisonMessageException() public method

Initializes a new instance of the MessageException class.
public PoisonMessageException ( ) : System
return System

PoisonMessageException() public method

Initializes a new instance of the MessageException class.
public PoisonMessageException ( IMessageId messageId, ICorrelationId correlationId, byte messagePayload, byte headerPayload, string format ) : System
messageId IMessageId The message identifier.
correlationId ICorrelationId The correlation identifier.
messagePayload byte The raw message payload.
headerPayload byte The raw header payload.
format string The format.
return System

PoisonMessageException() public method

Initializes a new instance of the MessageException class.
public PoisonMessageException ( string message, Exception inner, IMessageId messageId, ICorrelationId correlationId, byte messagePayload, byte headerPayload ) : System
message string The message.
inner System.Exception The inner.
messageId IMessageId The message identifier.
correlationId ICorrelationId The correlation identifier.
messagePayload byte The raw message payload.
headerPayload byte The raw header payload.
return System

PoisonMessageException() public method

Initializes a new instance of the MessageException class.
public PoisonMessageException ( string message, IMessageId messageId, ICorrelationId correlationId, byte messagePayload, byte headerPayload ) : System
message string The message.
messageId IMessageId The message identifier.
correlationId ICorrelationId The correlation identifier.
messagePayload byte The raw message payload.
headerPayload byte The raw header payload.
return System