Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
95
RecurrencePattern on ActivityUpdated
posted

Morning floks,

I got those two methods :

protected

 

void WSInfo_ActivityAdded(object sender, ActivityEventArgs e)
{
string recurrencePattern = e.Activity.RecurrencePattern;
}

 

protected void WSInfo_ActivityUpdated(object sender, ActivityEventArgs e)
{
string recurrencePattern = e.Activity.RecurrencePattern;
}

 

 

When i add an activity, i can get its ReccurencePattern. But when updating it, the reccurencePattern is empty.

I need to store the reccurecepattern on the database. How can i get it when updating an appointment please?

Parents
  • 995
    posted

    I am getting empty string value for the RecurrencePattern property for both  ActivityAdded and ActivityUpdated event handlers where I have used the WebScheduleGenericProvider object. Are you able to provide for me the code or small sample?

Reply Children