You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm not sure how to get an update committed, so thought I would just post it as an issue.
The RegistrationData class doesn't have a property to hold the TinCanRegistrationId data from the xml response.
I fixed this by adding the following code:
//new Propertyprivatestring_tinCanRegistrationId;/// <summary>/// Unique TinCan Identifier for this registration/// </summary>publicstringTinCanRegistrationId{get{return_tinCanRegistrationId;}privateset{_tinCanRegistrationId=value;}}
and adding the following to the registrationData constructor:
Hi, I'm not sure how to get an update committed, so thought I would just post it as an issue.
The RegistrationData class doesn't have a property to hold the TinCanRegistrationId data from the xml response.
I fixed this by adding the following code:
and adding the following to the registrationData constructor:
Hope this is helpful.
Thanks
Andy
The text was updated successfully, but these errors were encountered: