3 messages in com.googlegroups.bloggerdevRe: [bloggerDev] looking for a C# Ato...
FromSent OnAttachments
pc05 Oct 2006 22:45 
Frank Mantek06 Oct 2006 08:21 
pc07 Oct 2006 23:23 
Subject:Re: [bloggerDev] looking for a C# Atom Server API base class
From:Frank Mantek (fman@gmail.com)
Date:10/06/2006 08:21:04 AM
List:com.googlegroups.bloggerdev

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.