I am developing a Addin to MS outlook using VSTO c#. There I managed to write a meeting request send event handler.. There I want to get the meeting start time and the end time to pass to a backend server. I searched through the API but i could not find a way to get the meeting start time and the end time. It has other fields such as subject and the body.. Can any one tell me how can i achieve this meeting start time and end time using VSTO. Thanx.

void OutlookAppItemSend(object item, ref bool cancel)
{
    if (item is Outlook.MeetingItem)
    {
        var appt = item as Outlook.MeetingItem;
        String subject = appt.subject;
        String meetingStartDate= ??????????? 


 }

}

link|improve this question

56% accept rate
feedback

1 Answer

up vote 1 down vote accepted

try this

appt.GetAssociatedAppointment(false).Start

and this

appt.GetAssociatedAppointment(false).End.

link|improve this answer
Thank u very much.. it worked... :D – Nuwan Feb 8 at 4:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.