Exemplo n.º 1
0
        protected override IEnumerable <XElement> getSpecificData(WebContext context)
        {
            string[] parts    = this.url.remainder.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries);
            int      inviteId = int.Parse(parts[0]);
            string   code     = parts[1];
            Invite   invite   = Invite.LoadById(inviteId);

            if (invite.isUsed)
            {
                throw new FLocalException("Invite is already used");
            }
            if (invite.code != code)
            {
                throw new FLocalException("Code mismatch");
            }
            return(new XElement[] {
                invite.exportToXml(context),
            });
        }