Table of Contents

Interface IMessage

Namespace
Steeltoe.Messaging
Assembly
Steeltoe.Messaging.Abstractions.dll

A generic message representation with headers and a body

[Obsolete("This feature will be removed in the next major version. See https://steeltoe.io/docs/v3/obsolete for details.")]
public interface IMessage

Properties

Headers

Gets the headers for the message

IMessageHeaders Headers { get; }

Property Value

IMessageHeaders

Payload

Gets the body of the message

object Payload { get; }

Property Value

object