PdfRpt.Core.Helper.SoftHttpContext.responseEnd C# (CSharp) Méthode

responseEnd() private static méthode

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