1
I私が探している属性の値を返すために、以下の方法で、しかし、私は私の道はこの/Message
あるExpression Must evaluate to a node-set
C#のXMLDocumentケースから文字列を返す小文字を区別しない検索
取得を持っているし、私の属性はsequence
です
ちょうど私が私がしたい値を取得し、この
XmlNode mytestNode = xDoc.SelectSingleNode(xPath);
string attributec = mytestNode.Attributes[attribute].Value;
しかしattribute name
が同じ場合には戻ってこないすべての時間を行う場合
は、ここでは、私の方法
public static string xmlNode_GetValue_From_Attribute(XmlDocument xDoc, string xPath, string attribute)
{
return xDoc.SelectSingleNode(xPath + "/@" + "[translate(" + attribute + ", ‘ABCDEFGHIJKLMNOPQRSTUVWXYZ’, ‘abcdefghijklmnopqrstuvwxyz’)").Value;
}