I'm using this code to get appointments in windows phone 8
private void SearchAppointments_Click(object sender, RoutedEventArgs e)
{
Appointments appts = new Appointments();
appts.SearchCompleted += new EventHandler<AppointmentsSearchEventArgs>(Appointments_SearchCompleted);
appts.SearchAsync(DateTime.Now,DateTime.Now.AddDays(7),20);
}
now I need to get subject (or location & etc.) of appointments as string Can anybody help me please???