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

setBufferTrue() private static method

private static setBufferTrue ( object response ) : void
response object
return void
        private static void setBufferTrue(object response)
        {
            var bufferProperty = response.GetType().GetProperty("Buffer");
            bufferProperty.SetValue(response, true, null);
        }