Hey Guys,

I'm taking another stab at getting mojoportal running in mono 2.0. I'm getting a compile time error for a missing overload for HttpContext.RewritePath

Can you add this, then I can at least catch System.NotImplemented ?
Note the first overload is already there in svn just the second one below with 4 params is needed to get past this compile error

#if NET_2_0
        [MonoTODO]
        public void RewritePath (string path, bool rebaseClientPath)
        {
            throw new NotImplementedException ();
        }
       
        [MonoTODO]
        public void RewritePath (string filePath, string pathInfo, string queryString, bool rebaseClientPath)
        {
            throw new NotImplementedException ();
        }
#endif

Thanks,

Joe
_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to