Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing TinCanRegistrationId property #12

Open
andymills opened this issue Dec 4, 2014 · 0 comments
Open

Missing TinCanRegistrationId property #12

andymills opened this issue Dec 4, 2014 · 0 comments

Comments

@andymills
Copy link

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 Property
        private string _tinCanRegistrationId;

        /// <summary>
        /// Unique TinCan Identifier for this registration
        /// </summary>
        public string TinCanRegistrationId
        {
            get { return _tinCanRegistrationId; }
            private set { _tinCanRegistrationId = value; }
        }

and adding the following to the registrationData constructor:

this.TinCanRegistrationId = ((XmlElement)registrationElem
                                        .GetElementsByTagName("tinCanRegistrationId")[0])
                                        .InnerText;

Hope this is helpful.

Thanks
Andy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant