本文整理匯總了C#中N2.Persistence.Serialization.ReadingJournal.Report方法的典型用法代碼示例。如果您正苦於以下問題:C# ReadingJournal.Report方法的具體用法?C# ReadingJournal.Report怎麽用?C# ReadingJournal.Report使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類N2.Persistence.Serialization.ReadingJournal
的用法示例。
在下文中一共展示了ReadingJournal.Report方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Read
public void Read(XPathNavigator navigator, ContentItem item, ReadingJournal journal)
{
IDictionary<string, IAttachmentHandler> attachments = _explorer.Map<IAttachmentHandler>(item.GetContentType());
foreach(XPathNavigator attachmentElement in EnumerateChildren(navigator))
{
string name = attachmentElement.GetAttribute("name", string.Empty);
if(attachments.ContainsKey(name))
{
XPathNavigator attachmentContents = navigator.CreateNavigator();
attachmentContents.MoveToFirstChild();
Attachment a = attachments[name].Read(attachmentContents, item);
if(a != null)
journal.Report(a);
}
}
}
示例2: Read
public virtual IImportRecord Read(XPathNavigator navigator)
{
if (navigator == null) throw new ArgumentNullException("navigator");
ReadingJournal journal = new ReadingJournal();
foreach (XPathNavigator itemElement in EnumerateChildren(navigator))
{
try
{
ContentItem item = ReadSingleItem(itemElement, journal);
journal.Report(item);
}
catch (DefinitionNotFoundException ex)
{
journal.Error(ex);
if (!ignoreMissingTypes)
throw;
}
}
return journal;
}
示例3: CreateRecord
private static IImportRecord CreateRecord(ContentItem item)
{
ReadingJournal rj = new ReadingJournal();
rj.Report(item);
return rj;
}