System.Net.HttpListenerResponse.ComputeCoreHeaders C# (CSharp) Метод

ComputeCoreHeaders() приватный Метод

private ComputeCoreHeaders ( ) : void
Результат void
        internal void ComputeCoreHeaders()
        {
            if (HttpListenerContext.MutualAuthentication != null && HttpListenerContext.MutualAuthentication.Length > 0)
            {
                Headers[HttpResponseHeader.WwwAuthenticate] = HttpListenerContext.MutualAuthentication;
            }
            ComputeCookies();
        }