예제 #1
0
        public async Task <string> ListHeaders()
        {
            Rpc rpc = new Rpc();

            List <string> args = new List <string> {
            };

            return(await rpc.CallApi("ListHeaders", args));
        }
예제 #2
0
        public async Task <string> ListMultType()
        {
            Rpc rpc = new Rpc();

            List <string> args = new List <string> {
            };

            return(await rpc.CallApi("ListMultType", args));
        }
        public async Task <string> ListAllLegendary()
        {
            Rpc rpc = new Rpc();

            List <string> args = new List <string> {
            };

            return(await rpc.CallApi("ListAllLegendary", args));
        }
예제 #4
0
        public async Task <string> SearchName(string name)
        {
            Rpc rpc = new Rpc();

            List <string> args = new List <string>
            {
                name
            };

            return(await rpc.CallApi("SearchName", args));
        }
예제 #5
0
        public async Task <string> SearchType(string type)
        {
            Rpc rpc = new Rpc();

            List <string> args = new List <string>
            {
                type
            };

            return(await rpc.CallApi("SearchType", args));
        }
예제 #6
0
        public async Task <string> SearchHeader(string header, string value)
        {
            Rpc rpc = new Rpc();

            List <string> args = new List <string>
            {
                header,
                value
            };

            return(await rpc.CallApi("SearchHeader", args));
        }
예제 #7
0
        public async Task <string> Battle(string a, string b)
        {
            Rpc rpc = new Rpc();

            List <string> args = new List <string>
            {
                a,
                b
            };

            return(await rpc.CallApi("Battle", args));
        }