本文整理汇总了C#中Hl7.Fhir.Model.Bundle.Validate方法的典型用法代码示例。如果您正苦于以下问题:C# Bundle.Validate方法的具体用法?C# Bundle.Validate怎么用?C# Bundle.Validate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Hl7.Fhir.Model.Bundle
的用法示例。
在下文中一共展示了Bundle.Validate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Load
internal static Bundle Load(XmlReader reader, ErrorList errors)
{
XElement feed;
try
{
feed = XDocument.Load(reader).Root;
}
catch (Exception exc)
{
errors.Add("Exception while loading feed: " + exc.Message);
return null;
}
Bundle result;
try
{
result = new Bundle()
{
Title = Util.StringValueOrNull(feed.Element(XATOMNS + XATOM_TITLE)),
LastUpdated = Util.InstantOrNull(feed.Element(XATOMNS + XATOM_UPDATED)),
Id = Util.UriValueOrNull(feed.Element(XATOMNS + XATOM_ID)),
Links = getLinks(feed.Elements(XATOMNS + XATOM_LINK)),
AuthorName = feed.Elements(XATOMNS + XATOM_AUTHOR).Count() == 0 ? null :
Util.StringValueOrNull(feed.Element(XATOMNS + XATOM_AUTHOR)
.Element(XATOMNS + XATOM_AUTH_NAME)),
AuthorUri = feed.Elements(XATOMNS + XATOM_AUTHOR).Count() == 0 ? null :
Util.StringValueOrNull(feed.Element(XATOMNS + XATOM_AUTHOR)
.Element(XATOMNS + XATOM_AUTH_URI)),
TotalResults = Util.IntValueOrNull(feed.Element(XOPENSEARCHNS + XATOM_TOTALRESULTS))
};
}
catch (Exception exc)
{
errors.Add("Exception while parsing xml feed attributes: " + exc.Message,
String.Format("Feed '{0}'", feed.Element(XATOMNS + XATOM_ID).Value));
return null;
}
result.Entries = loadEntries(feed.Elements().Where(elem =>
(elem.Name == XATOMNS + XATOM_ENTRY ||
elem.Name == XTOMBSTONE + XATOM_DELETED_ENTRY)), result, errors);
errors.AddRange(result.Validate());
return result;
}