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();
        }