示例#1
0
        public static string GetUri(UriType type, IParameters parameters)
        {
            string uri;

            switch (type)
            {
            case UriType.MalListQuery:
                uri = "http://myanimelist.net/malappinfo.php?";
                break;

            default:
                throw new ArgumentOutOfRangeException(nameof(type), type, null);
            }
            uri += parameters.GetParamChain();
            return(uri);
        }