Example #1
0
        public Stream ReadRaw(string path)
        {
            if (InnerLookup != null && InnerLookup.Exists(path))
            {
                return(InnerLookup.ReadRaw(path));
            }

            var text = Find(path);

            return(new MemoryStream(Encoding.UTF8.GetBytes(text.ReadToEnd())));
        }