Owin.Host.MonoHttpListener.RequestProcessing.OwinHttpListenerContext.SetDisconnected C# (CSharp) Method

SetDisconnected() private static method

private static SetDisconnected ( object state ) : void
state object
return void
        private static void SetDisconnected(object state)
        {
            var context = (OwinHttpListenerContext)state;
            context.End(new HttpListenerException(Constants.ErrorConnectionNoLongerValid));
        }