Table of Contents

Class CorrelationToken

Namespace
Cuemon.Messaging
Assembly
Cuemon.Core.dll

Provides a default implementation of the ICorrelationToken interface.

public class CorrelationToken : ICorrelationToken, IEquatable<CorrelationToken>
Inheritance
Object
CorrelationToken
Implements
IEquatable<CorrelationToken>

Constructors

CorrelationToken(String)

Initializes a new instance of the CorrelationToken class.

public CorrelationToken(string correlationId = null)

Parameters

correlationId String

The string that uniquely identifies a correlation. Default value is a GUID expressed as 32 digits.

Properties

CorrelationId

Gets the unique correlation identifier.

public string CorrelationId { get; }

Property Value

String

The unique correlation identifier.

Methods

ToString()

Returns a System.String that represents this instance.

public override string ToString()

Returns

String

A System.String that represents this instance.

See Also