BackChannelLogoutTransport Class
The HTTP transport back-channel logout tokens travel on, to the URI a client registered.
public static class BackChannelLogoutTransportInheritance 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.
public const string HttpClientName = "ILogoutTokenSender";Field Value
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.