If you are looking for a way to construct an atom object model and persist
it into XML/Atom you could do that with the .NET lib for the GDATA api. Code
would look like this:
Tracing.TraceInfo("Entering Create Feed Test");
AtomFeed feed = new AtomFeed(new Uri("http://dummy"), null);
AtomEntry entry;
for (int i = 1; i <= this.iIterations; i++)
{
entry = new AtomEntry()
... set properties on the entry
feed.Entries.Add(entry);
}
feed.save...
Frank
On 10/6/06, pc <phil...@gmail.com> wrote:
Does anyone know of a decent Atom API base class in C# for a Atom
Server implementation?
If you think this question is better suited for another group, please
suggest the group.