PdfRpt.Core.Helper.SoftHttpContext.clearResponse C# (CSharp) Method

clearResponse() private static method

private static clearResponse ( object response ) : void
response object
return void
        private static void clearResponse(object response)
        {
            var clear = response.GetType().GetMethod("Clear");
            clear.Invoke(response, new object[] { });
        }