CallbackRuntimeContext constructor

Represents the runtime context for executing a callback operation.

public CallbackRuntimeContext(string CorrelationId, string IdempotencyKeySeed, Uri? DefaultBaseUri, 
    IReadOnlyDictionary<string, object?> Vars, object? CallbackPayload)
parameter description
CorrelationId The unique identifier for correlating the callback operation.
IdempotencyKeySeed The seed value used for generating idempotency keys to ensure idempotent callback execution.
DefaultBaseUri The default base URI to be used for relative callback URLs, if any.
Vars A read-only dictionary containing variables relevant to the callback context.
CallbackPayload The payload object associated with the callback.

See Also