예제 #1
0
파일: Server.cs 프로젝트: rzymek01/pai-lab9
        public System.IO.Stream Get(string path)
        {
            string result = mFrontCtrl.Process(path);

            byte[] resultBytes = Encoding.UTF8.GetBytes(result);
            WebOperationContext.Current.OutgoingResponse.ContentType = "text/html";
            return(new MemoryStream(resultBytes));
        }