Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

enum Sustainsys.Saml2.WebSso.Cacheability

Assembly: Sustainsys.Saml2

Reimplementation of System.Web.HttpCacheability.

Values

NotSpecified
Value is not initialized and probably a mistake.
NoCache
Sets the Cache-Control: no-cache header.
Private
The default value. Sets the cache control to "private".
Server
Specifies that the response is cached only at the origin server.
ServerAndNoCache
Will disallow anyone but the server to cache the result.
Public
Sets the Cache-Control to public.
ServerAndPrivate
The response is cached in the client and the server but nowhere else.