本文整理汇总了C#中XmlNode.childNode方法的典型用法代码示例。如果您正苦于以下问题:C# XmlNode.childNode方法的具体用法?C# XmlNode.childNode怎么用?C# XmlNode.childNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类XmlNode
的用法示例。
在下文中一共展示了XmlNode.childNode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: apply
public static void apply(XmlNode consequence)
{
foreach (XmlNode change in consequence.SelectNodes(CHANGE)) {
string changeProp = change.getString();
foreach (XmlNode add in change.SelectNodes(ADD)) {
int delta = MathData.GetInt(add);
UserProperty.setProp(changeProp,
(UserProperty.GetPropNode(changeProp).GetInt() + delta).ToString()
);
}
foreach (XmlNode mult in change.SelectNodes(MULTIPLY)) {
int factor = MathData.GetInt(mult);
UserProperty.setProp(changeProp,
(UserProperty.GetPropNode(changeProp).GetInt() * factor).ToString()
);
}
}
foreach (XmlNode newNameNode in consequence.SelectNodes(LEARN_NAME)) {
string newName = newNameNode.getString();
foreach (string oldName in newNameNode.childNode(BEFORE_CALLED).getStrings()) {
Regex regex = new Regex(string.Format("^({0}):", oldName));
foreach (string setting in newNameNode.childNode(APPEARS_IN).getStrings()) {
XmlNode uProp = UserProperty.GetPropNode(setting);
foreach (XmlNode replaceable in uProp.GetStringNodes()) {
replaceable.SetString(regex.Replace(replaceable.getString(), delegate(Match m) {
return newName + ":";
}));
}
}
}
}
foreach (XmlNode addLines in consequence.SelectNodes(ADD_STRING)) {
XmlNode dialog = UserProperty.GetPropNode(addLines.childNode(STRING_TARGET).getString());
foreach (string line in addLines.getStrings()) {
dialog.CreateStringNode().SetString(line);
}
}
if (consequence.childNode(WIPE_USER_STATE) != null) {
UserProperty.Wipe();
UserProperty.ForceReload();
}
}