私は、xsに変換するbcl.DateTime要素をしたいと思います:XPathDocumentオブジェクトprotobuf-net:bcl.DateTime to xs:dateTime?
の日時これはissue #69
に関連するかもしれない、私はこの
test.proto
のような小さなテストプロジェクトを作成しましたimport "bcl.proto";
message Test {
required bcl.DateTime tAsOf = 1;
}
Program.csの
using System;
using System.IO;
using System.Xml;
using System.Xml.Serialization;
using System.Xml.XPath;
using ProtoBuf;
using test;
namespace DateTimeXML
{
class Program
{
static void Main()
{
var d = new bcl.DateTime() {value = new DateTime(2011, 7, 31).Ticks};
var t = new Test() {tAsOf = d};
var xml = Serialize(t);
WriteXpathDocument(xml, "c:\\temp\\xpathdoc.xml");
}
private static XPathDocument Serialize(Test obj)
{
XPathDocument xmlDoc;
Serializer.PrepareSerializer<Test>();
var x = new XmlSerializer(obj.GetType());
using (var memoryStream = new MemoryStream())
{
using (TextWriter w = new StreamWriter(memoryStream))
{
x.Serialize(w, obj);
memoryStream.Position = 0;
xmlDoc = new XPathDocument(memoryStream);
}
}
return xmlDoc;
}
private static void WriteXpathDocument(XPathDocument xpathDoc, string filename)
{
// Create XpathNaviagtor instances from XpathDoc instance.
var objXPathNav = xpathDoc.CreateNavigator();
// Create XmlWriter settings instance.
var objXmlWriterSettings = new XmlWriterSettings();
objXmlWriterSettings.Indent = true;
// Create disposable XmlWriter and write XML to file.
using (var objXmlWriter = XmlWriter.Create(filename, objXmlWriterSettings))
{
objXPathNav.WriteSubtree(objXmlWriter);
objXmlWriter.Close();
}
}
}
}
それは次のXMLファイルを作成します。
<?xml version="1.0" encoding="utf-8"?>
<Test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<tAsOf>
<value>634476672000000000</value>
</tAsOf>
</Test>
日時をUTLの日付文字列で送信する必要があります(例:2006-01-01T00:00:00Z )。http://code.google.com/apis/gdata/docs/2.0/elements.html – Damian
申し訳ありませんが遅れました;これは私が過ぎ去りました) –