EWS ミーティングで本文情報をハイパーリンクとして追加するにはどうすればよいですか?
// Create the appointment.
Appointment appointment = new Appointment(service);
// Set properties on the appointment.
appointment.Subject = "Dentist Appointment";
appointment.Body = "The appointment is with Dr. Smith.";
appointment.Start = new DateTime(2009, 3, 1, 9, 0, 0);
appointment.End = appointment.Start.AddHours(2);
// Save the appointment.
appointment.Save(SendInvitationsMode.SendToNone);
上記のコードは、予定を作成することです。Appointment.Body にはプレーン テキストがあります。ハイパーリンクにする方法。