Table of Contents

Interface RequestStarted

Namespace
MassTransit.Contracts
Assembly
MassTransit.Abstractions.dll

Published when a saga starts to process a request, but a subsequent operation (such as another request) is pending.

public interface RequestStarted

Properties

CorrelationId

The saga correlationId, used to reconnect to the saga once the request is completed

Guid CorrelationId { get; }

Property Value

Guid

ExpirationTime

The expiration time for this request, which if completed after, the response is discarded

DateTime? ExpirationTime { get; }

Property Value

DateTime?

FaultAddress

The FaultAddress header value from the original request

Uri FaultAddress { get; }

Property Value

Uri

Payload

The actual message payload

object Payload { get; }

Property Value

object

PayloadType

The payload types supported by the payload

string[] PayloadType { get; }

Property Value

string[]

RequestId

The RequestId header value that was specified in the original request

Guid RequestId { get; }

Property Value

Guid

ResponseAddress

The ResponseAddress header value from the original request

Uri ResponseAddress { get; }

Property Value

Uri