Interface ICallContext
Represents a context object for the current call.
Namespace: IRM
Assembly: IRM.dll
Syntax
public interface ICallContext
Properties
CancellationToken
Gets or sets a CancellationToken that can be used to abort the current call.
Declaration
CancellationToken CancellationToken { get; set; }
Property Value
System.Threading.CancellationToken
|
CorrelationId
Gets or sets the correlation id for the current call context.
Declaration
Guid CorrelationId { get; set; }
Property Value
System.Guid
|
CurrentCulture
Gets or sets the current System.Globalization.CultureInfo.
Declaration
CultureInfo CurrentCulture { get; set; }
Property Value
System.Globalization.CultureInfo
|
TenantId
Gets the tenant id for the current call context.
Declaration
Guid TenantId { get; }
Property Value
System.Guid
|
User
Gets the user for the current call context.
Declaration
ClaimsPrincipal User { get; }
Property Value
System.Security.Claims.ClaimsPrincipal
|