You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 18, 2017. It is now read-only.
// provided by root-most layer, akin to IApplicationEnvironment// dependency-injected into hosting layer to subscribe to shutdownrequested token// dependency-injected into file watcher or other low-level components// which have a reason to request process shutdown[AssemblyNeutral]publicinterfaceIApplicationShutdown{// called by subsystems that wish to initiate a graceful shutdown.// typical callers include file watcher// expect to return immediately.voidRequestShutdown();// token triggered the first time RequestShutdown is called// typical observers include helios or self-host's "main" method// expected behavior is to return from "main" which will result in// the rest of the tear-down sequence occuring// including triggering IHttpApplicationLifecycle events// and ultimately process termination or recyclingCancellationTokenShutdownRequested{get;}}
The text was updated successfully, but these errors were encountered:
Related to aspnet/Hosting#23
The text was updated successfully, but these errors were encountered: