Table of Contents

Interface ValidationResult

Namespace
MassTransit
Assembly
MassTransit.Abstractions.dll

Reports information about the configuration before configuring so that corrections can be made without allocating resources, etc.

public interface ValidationResult
Extension Methods

Properties

Disposition

The disposition of the result, any Failure items will prevent the configuration from completing.

ValidationResultDisposition Disposition { get; }

Property Value

ValidationResultDisposition

Key

The key associated with the result (chained if configurators are nested)

string Key { get; }

Property Value

string

Message

The message associated with the result

string Message { get; }

Property Value

string

Value

The value associated with the result

string? Value { get; }

Property Value

string