Skip to content

BackChannelLogoutTransport Class

The HTTP transport back-channel logout tokens travel on, to the URI a client registered.

C#
public static class BackChannelLogoutTransport

Inheritance System.Object → BackChannelLogoutTransport

Fields

BackChannelLogoutTransport.HttpClientName Field

The name the transport's client is registered under, published so a host can configure it without copying the string: services.AddHttpClient(BackChannelLogoutTransport.HttpClientName) reaches the same client the sender resolves.

C#
public const string HttpClientName = "ILogoutTokenSender";

Field Value

System.String

Remarks

The value is the contract's name because this is a typed client, and that is the logical name AddHttpClient<TClient, TImplementation> gives it. Reference the constant rather than spelling that rule out at every call site.