Exemple #1
0
        public WorkItem(XElement entry)
        {
            var activity = entry.ActivityElement("object");

            Parent = activity.AtomString("title");
            Issue  = activity.AtomString("summary");
        }
Exemple #2
0
        public static string ActivityString(this XElement element, string name)
        {
            var activ = element.ActivityElement(name);

            return(activ == null ? null : activ.Value);
        }