コード例 #1
0
        public static bool IsDefaultPathOrSpecialPath(string e)
        {
            if (WebServiceHandler.InternalIsDefaultPath(e))
            {
                return(true);
            }

            if (e == "/jsc")
            {
                return(true);
            }

            if (e == "/xml")
            {
                return(true);
            }

            return(false);
        }