Ejemplo n.º 1
0
        public async static Task MainAsync()
        {
            using (var client = new PandoraClient())
            {
                await client.PartnerLogin();

                Console.WriteLine("Succesfully logged in.");
            }
        }
Ejemplo n.º 2
0
        public async static Task MainAsync()
        {
            using (var client = new PandoraClient())
            {
                await client.PartnerLogin();

                string username = PandoraHelpers.Username;
                string password = PandoraHelpers.Password;
                await client.UserLogin(username, password);
            }
        }