Example #1
0
        static async Task UpdateAccountProfileAsync(TwitterContext twitterCtx)
        {
            var user = await twitterCtx.UpdateAccountProfileAsync(
                "Joe Mayo",
                "http://linqtotwitter.codeplex.com",
                "Las Vegas, NV",
                "Testing the Account Profile Update with LINQ to Twitter.",
                true,
                true);

            if (user != null)
                Console.WriteLine(
                    "Name: {0}\nURL: {1}\nLocation: {2}\nDescription: {3}",
                    user.Name, user.Url, user.Location, user.Description); 
        }