Table of Contents

Class FutureMessage

Namespace
MassTransit
Assembly
MassTransit.Abstractions.dll
public class FutureMessage
Inheritance
FutureMessage
Inherited Members

Constructors

FutureMessage()

public FutureMessage()

FutureMessage(IDictionary<string, object>, string[])

public FutureMessage(IDictionary<string, object> message, string[] supportedMessageTypes)

Parameters

message IDictionary<string, object>
supportedMessageTypes string[]

Properties

Message

public IDictionary<string, object> Message { get; set; }

Property Value

IDictionary<string, object>

SupportedMessageTypes

public string[] SupportedMessageTypes { get; set; }

Property Value

string[]

Methods

HasMessageType(Type)

public bool HasMessageType(Type messageType)

Parameters

messageType Type

Returns

bool

HasMessageType<T>()

public bool HasMessageType<T>() where T : class

Returns

bool

Type Parameters

T