Skip to main content
Table of Contents

Class PublishedMessage

Namespace
Stratara.Testing
Assembly
Stratara.Testing.dll

A message captured by InMemoryMessageBus for test assertions.

public sealed record PublishedMessage : IEquatable<PublishedMessage>
Inheritance
PublishedMessage
Implements
Inherited Members
Extension Methods

Constructors

PublishedMessage(string, object)

A message captured by InMemoryMessageBus for test assertions.

public PublishedMessage(string Topic, object Message)

Parameters

Topic string

The topic the message was published to.

Message object

The published message payload.

Properties

Message

The published message payload.

public object Message { get; init; }

Property Value

object

Topic

The topic the message was published to.

public string Topic { get; init; }

Property Value

string