Table of Contents

Class RequestToken

Namespace
Cuemon.Messaging
Assembly
Cuemon.Core.dll

Provides a default implementation of the IRequestToken interface.

public record RequestToken : IRequestToken, IEquatable<RequestToken>
Inheritance
RequestToken
Implements

Constructors

RequestToken(string)

Initializes a new instance of the RequestToken class.

public RequestToken(string requestId = null)

Parameters

requestId string

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

Properties

RequestId

Gets the unique request identifier.

public string RequestId { get; }

Property Value

string

The unique request identifier.

Methods

ToString()

Returns a string that represents this instance.

public override string ToString()

Returns

string

A string that represents this instance.

See Also