Bloom.Api.ServerBase.MakeReply C# (CSharp) Method

MakeReply() private method

This is designed to be easily unit testable by not taking actual HttpContext, but doing everything through this IRequestInfo object
private MakeReply ( IRequestInfo info ) : void
info IRequestInfo
return void
        internal void MakeReply(IRequestInfo info)
        {
            if (!ProcessRequest(info))
            {
                ReportMissingFile(info);
            }
        }