//
///讀取xml中的指定節點的值
///
privatestringReadXmlNode(stringfilename)
{
stringresult="-1";
XmlDocumentxmlDoc=newXmlDocument();
try
xmlDoc.LoadXml(filename);
//讀取Activity節點下的資料。SelectSingleNode匹配第一個Activity節點
XmlNoderoot=xmlDoc.SelectSingleNode("//head");//當節點Workflow帶有屬性是,使用SelectSingleNode無法讀取
if(root!=null)
result=(root.SelectSingleNode("code")).InnerText;
}
catch//(Exceptione)
//
///讀取xml中的指定節點的值
///
privatestringReadXmlNode(stringfilename)
{
stringresult="-1";
XmlDocumentxmlDoc=newXmlDocument();
try
{
xmlDoc.LoadXml(filename);
//讀取Activity節點下的資料。SelectSingleNode匹配第一個Activity節點
XmlNoderoot=xmlDoc.SelectSingleNode("//head");//當節點Workflow帶有屬性是,使用SelectSingleNode無法讀取
if(root!=null)
result=(root.SelectSingleNode("code")).InnerText;
}
catch//(Exceptione)