本文整理汇总了C#中System.Xml.XmlWriter.WriteMorphInfoElements方法的典型用法代码示例。如果您正苦于以下问题:C# XmlWriter.WriteMorphInfoElements方法的具体用法?C# XmlWriter.WriteMorphInfoElements怎么用?C# XmlWriter.WriteMorphInfoElements使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Xml.XmlWriter
的用法示例。
在下文中一共展示了XmlWriter.WriteMorphInfoElements方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ToXml
/// <summary>
/// Report trace information as XML
/// </summary>
/// <param name="writer"></param>
public void ToXml(XmlWriter writer)
{
writer.WriteStartElement("WordGrammarAttempt");
writer.WriteAttributeString("success", m_fSuccess ? "true" : "false");
writer.WriteStartElement("Id");
writer.WriteValue(m_id);
writer.WriteEndElement();
string type = "pfx"; // try to guess morph type based on word type
foreach (PcPatrMorph morph in m_morphs)
{
writer.WriteStartElement("morph");
string sWordType = morph.wordType;
writer.WriteAttributeString("wordType", sWordType);
if (type == "pfx" && sWordType == "root")
type = "root";
else if (type == "root" && sWordType != "root")
type = "sfx";
writer.WriteAttributeString("type", type);
writer.WriteAttributeString("alloid", morph.formId);
writer.WriteAttributeString("morphname", morph.msaId);
writer.WriteMorphInfoElements(m_cache, morph.formId, morph.msaId, morph.wordType, morph.featureDescriptors);
writer.WriteMsaElement(m_cache, morph.formId, morph.msaId, type, morph.wordType);
writer.WriteInflClassesElement(m_cache, morph.formId);
writer.WriteEndElement(); // morph
}
writer.WriteEndElement();
}
示例2: BuildXmlOutput
private void BuildXmlOutput(XmlWriter writer, IEnumerable<PcPatrMorph> morphs)
{
writer.WriteStartElement("WfiAnalysis");
writer.WriteStartElement("Morphs");
foreach (PcPatrMorph morph in morphs)
{
writer.WriteStartElement("Morph");
writer.WriteStartElement("MoForm");
writer.WriteAttributeString("DbRef", morph.formId);
writer.WriteAttributeString("Label", morph.form);
writer.WriteAttributeString("wordType", morph.wordType);
writer.WriteEndElement();
writer.WriteStartElement("MSI");
writer.WriteAttributeString("DbRef", morph.msaId);
writer.WriteMsaElement(m_cache, morph.formId, morph.msaId, null, morph.wordType);
writer.WriteEndElement();
writer.WriteMorphInfoElements(m_cache, morph.formId, morph.msaId, morph.wordType, null);
writer.WriteEndElement();
}
writer.WriteEndElement();
writer.WriteEndElement();
}