以前就碰過,一直懶得研究 XDocument 到底為什麼有時候會秀逗,直接改用 XmlDocument。 這次碰到非用不可的情況,就藉機深究下。
- string xml = @"<?xml version='1.0' encoding='utf-8'?>
- <ComputerBuildReportRequest xmlns:i='http://www.w3.org/2001/XMLSchema-instance' xmlns='http://schemas.ms.it.oem/digitaldistribution/2010/10'>
- <Bindings>
- <Binding>
- <ProductKeyID>1000000002</ProductKeyID>
- <HardwareHash>xxx</HardwareHash>
- <HXSpecifics>
- <UnitPartNumber>123456-789</UnitPartNumber>
- </HXSpecifics>
- </Binding>
- <Binding>
- <ProductKeyID>1000000003</ProductKeyID>
- <HardwareHash>yyy</HardwareHash>
- <HXSpecifics>
- <UnitPartNumber>123456-787</UnitPartNumber>
- </HXSpecifics>
- </Binding>
- </Bindings>
- </ComputerBuildReportRequest>";
- XDocument doc = XDocument.Parse(xml);
- var elements = doc.Descendants("Binding"); // empty
Life Online
2020年11月26日 星期四
【C#】XDocument Descendants() 取不到東西
2020年6月27日 星期六
【C#】Verify permission of specific directory
Actual verification of read permission to specific directory without opens a stream.
2020年6月26日 星期五
2019年5月28日 星期二
【MS-SQL】Can't open .trc file generated by SQLDiag
想直接雙擊打開 SQLDiag 錄的 trc 但會碰到
SQL Server Profiler
Failed to open a file. Access is denied.
的錯誤視窗【MS-SQL】SQLDiag debug
要跑 SQLDiag 的時候發生錯誤,錄完之後沒產生 trc 檔,cmd 有以下錯誤。
\ Error querying installation path for SQLDIAG on . Function result: 2. Message: The system cannot find the file specified.
訂閱:
文章 (Atom)