PdfRpt.Core.Helper.SoftHttpContext.responseEnd C# (CSharp) 메소드

responseEnd() 개인적인 정적인 메소드

private static responseEnd ( object response ) : void
response object
리턴 void
        private static void responseEnd(object response)
        {
            var responseEnd = response.GetType().GetMethod("End");
            responseEnd.Invoke(response, new object[] { });
        }