Class ErrorMessage
Inheritance
System.Object
ErrorMessage
Assembly: Steeltoe.Messaging.MessagingBase.dll
Syntax
public class ErrorMessage : Message<Exception>, IMessage<Exception>, IMessage
Constructors
|
Edit this page
View Source
ErrorMessage(Exception)
Declaration
public ErrorMessage(Exception payload)
Parameters
Type |
Name |
Description |
Exception |
payload |
|
|
Edit this page
View Source
ErrorMessage(Exception, IDictionary<String, Object>)
Declaration
public ErrorMessage(Exception payload, IDictionary<string, object> headers)
Parameters
Type |
Name |
Description |
Exception |
payload |
|
IDictionary<System.String, System.Object> |
headers |
|
|
Edit this page
View Source
ErrorMessage(Exception, IDictionary<String, Object>, IMessage)
Declaration
public ErrorMessage(Exception payload, IDictionary<string, object> headers, IMessage originalMessage)
Parameters
Type |
Name |
Description |
Exception |
payload |
|
IDictionary<System.String, System.Object> |
headers |
|
IMessage |
originalMessage |
|
|
Edit this page
View Source
ErrorMessage(Exception, IMessage)
Declaration
public ErrorMessage(Exception payload, IMessage originalMessage)
Parameters
Type |
Name |
Description |
Exception |
payload |
|
IMessage |
originalMessage |
|
|
Edit this page
View Source
Declaration
public ErrorMessage(Exception payload, IMessageHeaders headers)
Parameters
|
Edit this page
View Source
Declaration
public ErrorMessage(Exception payload, IMessageHeaders headers, IMessage originalMessage)
Parameters
Properties
|
Edit this page
View Source
OriginalMessage
Declaration
public IMessage OriginalMessage { get; }
Property Value
Methods
|
Edit this page
View Source
ToString()
Declaration
public override string ToString()
Returns
Type |
Description |
System.String |
|
Overrides
Steeltoe.Messaging.Message<Exception>.ToString()
Implements