System.Net.HttpListenerResponse.ComputeCoreHeaders C# (CSharp) Method

ComputeCoreHeaders() private method

private ComputeCoreHeaders ( ) : void
return void
        internal void ComputeCoreHeaders()
        {
            if (HttpListenerContext.MutualAuthentication != null && HttpListenerContext.MutualAuthentication.Length > 0)
            {
                Headers[HttpResponseHeader.WwwAuthenticate] = HttpListenerContext.MutualAuthentication;
            }
            ComputeCookies();
        }