Example #1
0
        static async Task UpdateDeliveryDeviceAsync(TwitterContext twitterCtx)
        {
            Account acct = 
                await twitterCtx.UpdateDeliveryDeviceAsync(
                    DeviceType.None, null);

            if (acct != null && acct.User != null)
                Console.WriteLine("Update for: ", acct.User.ScreenNameResponse); 
        }