本文整理汇总了C#中HandCoded.Xml.NodeIndex.GetAttributesByName方法的典型用法代码示例。如果您正苦于以下问题:C# NodeIndex.GetAttributesByName方法的具体用法?C# NodeIndex.GetAttributesByName怎么用?C# NodeIndex.GetAttributesByName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HandCoded.Xml.NodeIndex
的用法示例。
在下文中一共展示了NodeIndex.GetAttributesByName方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Evaluate
/// <summary>
/// Evaluates this <see cref="Precondition"/> against the contents of the
/// indicated <see cref="NodeIndex"/>.
/// </summary>
/// <param name="nodeIndex">The <see cref="NodeIndex"/> of a <see cref="XmlDocument"/></param>
/// <param name="cache">A cache of previously evaluated precondition results.</param>
/// <returns>A <see cref="bool"/> value indicating the applicability of this
/// <see cref="Precondition"/> to the <see cref="XmlDocument"/>.</returns>
public override bool Evaluate(NodeIndex nodeIndex, Dictionary<Precondition, bool> cache)
{
HandCoded.FpML.Util.Version version;
// Find the document version
XmlNodeList list = nodeIndex.GetElementsByName ("FpML");
if (list.Count > 0)
version = FpML.Util.Version.Parse (((XmlElement) list [0]).GetAttribute ("version"));
else {
list = nodeIndex.GetAttributesByName ("fpmlVersion");
if (list.Count > 0)
version = FpML.Util.Version.Parse (((XmlAttribute) list [0]).Value);
else
return (false);
}
// System.Console.Write ("Range (Doc=" + version
// + " Min=" + ((minimumVersion != null) ? minimumVersion.ToString () : "*")
// + " Max=" + ((maximumVersion != null) ? maximumVersion.ToString () : "*"));
bool validMin = (minimumVersion != null) ? (version.CompareTo (minimumVersion) >= 0) : true;
bool validMax = (maximumVersion != null) ? (version.CompareTo (maximumVersion) <= 0) : true;
// System.Console.WriteLine (") => " + (validMin & validMax));
return (validMin & validMax);
}