XMLに続いて、LinqtoXMLを使用して解析しています。以下のコードを使用していますが、何も取得していません。
<?xml version="1.0" encoding="utf-8"?>
<!--ADOR Acknowledgement 2-->
<AckTransmission xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.irs.gov/efile">
<TransmissionHeader recordCount="1">
<Jurisdiction>ALABAMA</Jurisdiction>
<TransmissionId>1946157056</TransmissionId>
<Timestamp>2012-08-16T01:25:47-05:00</Timestamp>
<Transmitter>
<ETIN>00000</ETIN>
</Transmitter>
<ProcessType>T</ProcessType>
<AgentIdentifier>ACK</AgentIdentifier>
</TransmissionHeader>
<Acknowledgement>
<SubmissionId>X1684956672</SubmissionId>
<EFIN>X16849</EFIN>
<GovernmentCode>ALST</GovernmentCode>
<SubmissionType>XMLTOM</SubmissionType>
<TaxYear>9999</TaxYear>
<SubmissionCategory>MFET</SubmissionCategory>
<AcceptanceStatus>A</AcceptanceStatus>
<ContainedAlerts>0</ContainedAlerts>
<StatusDate>2012-08-16</StatusDate>
</Acknowledgement>
</AckTransmission>
Linqを使用してこのXMLを解析しようとしています
を使用して
var
q1 = from c1 in TheDocument1.Descendants("{http://www.irs.gov/efile}AckTransmission")
select new
{
Jurisdiction = c1.Element("{http://www.irs.gov/efile}Jurisdiction").Value,
TransmissionId = c1.Element("{http://www.irs.gov/efile}TransmissionId").Value,
ETIN = c1.Element("{http://www.irs.gov/efile}Transmitter").Element("{http://www.irs.gov/efile}ETIN").Value,
lTimestamp = c1.Element("{http://www.irs.gov/efile}Timestamp").Value,
ProcessType = c1.Element("{http://www.irs.gov/efile}ProcessType").Value,
AgentIdentifie = c1.Element("{http://www.irs.gov/efile}AgentIdentifier").Value,
GovernmentCode = c1.Element("{http://www.irs.gov/efile}GovernmentCode").Value,
SubmissionType = c1.Element("{http://www.irs.gov/efile}SubmissionType").Value,
TaxYear = c1.Element("{http://www.irs.gov/efile}TaxYear").Value,
StatusDate = c1.Element("{http://www.irs.gov/efile}StatusDate").Value
};
しかし、何も得られなかったので、たくさんのことを試し、負けました。私を助けてください。前もって感謝します