MetaWeblogAPI.cs :  » Content-Management-Systems-CMS » Kooboo » CookComputing » Blogger » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Content Management Systems CMS » Kooboo 
Kooboo » CookComputing » Blogger » MetaWeblogAPI.cs
                                                                                                                                                                                                                                                               
using System;
using CookComputing.XmlRpc;

namespace CookComputing.MetaWeblog{
  [XmlRpcMissingMapping(MappingAction.Ignore)]
  public struct Enclosure
  {
    public int length;
    public string type;
    public string url;
  }

  [XmlRpcMissingMapping(MappingAction.Ignore)]
  public struct Source
  {
    public string name;
    public string url;
  }

  [XmlRpcMissingMapping(MappingAction.Ignore)]
  public struct Post
  {
    [XmlRpcMissingMapping(MappingAction.Error)]
    [XmlRpcMember(Description="Required when posting.")]
    public DateTime dateCreated;
    [XmlRpcMissingMapping(MappingAction.Error)]
    [XmlRpcMember(Description="Required when posting.")]
    public string description;
    [XmlRpcMissingMapping(MappingAction.Error)]
    [XmlRpcMember(Description="Required when posting.")]
    public string title;

    public string[] categories;
    public Enclosure enclosure;
    public string link;
    public string permalink;
    [XmlRpcMember(
       Description="Not required when posting. Depending on server may "
       + "be either string or integer. "
       + "Use Convert.ToInt32(postid) to treat as integer or "
       + "Convert.ToString(postid) to treat as string")]
    public object postid;       
    public Source source;
    public string userid;

    public object mt_allow_comments; 
    public object mt_allow_pings; 
    public object mt_convert_breaks;
    public string mt_text_more;
    public string mt_excerpt;
  }

  public struct CategoryInfo
  {
    public string description;
    public string htmlUrl;
    public string rssUrl;
    public string title;
    public string categoryid;
  }

  public struct Category
  {
    public string categoryId;
    public string categoryName;
  }

  public struct FileData
  {
    public byte[] bits;
    public string name;
    //public string type;
  }

  public struct UrlData
  {
    public string url;
  }

  public interface IMetaWeblog
  {
    [XmlRpcMethod("metaWeblog.editPost",
       Description="Updates and existing post to a designated blog "
       + "using the metaWeblog API. Returns true if completed.")]
    object editPost(
      string postid,
      string username,
      string password,
      Post post,
      bool publish);

    [XmlRpcMethod("metaWeblog.getCategories",
       Description="Retrieves a list of valid categories for a post "
       + "using the metaWeblog API. Returns the metaWeblog categories "
       + "struct collection.")]
    CategoryInfo[] getCategories(
      string blogid,
      string username,
      string password);

    [XmlRpcMethod("metaWeblog.getPost",
       Description="Retrieves an existing post using the metaWeblog "
       + "API. Returns the metaWeblog struct.")]
    Post getPost(
      string postid,
      string username,
      string password);

    [XmlRpcMethod("metaWeblog.getRecentPosts",
       Description="Retrieves a list of the most recent existing post "
       + "using the metaWeblog API. Returns the metaWeblog struct collection.")]
    Post[] getRecentPosts(
      string blogid,
      string username,
      string password,
      int numberOfPosts);

    [XmlRpcMethod("metaWeblog.newPost",
       Description="Makes a new post to a designated blog using the "
       + "metaWeblog API. Returns postid as a string.")]
    string newPost(
      string blogid,
      string username,
      string password,
      Post post,
      bool publish);

    [XmlRpcMethod("metaWeblog.newMediaObject",
  Description = "Makes a new file to a designated blog using the "
  + "metaWeblog API. Returns url as a string of a struct.")]
    UrlData newMediaObject(
      string blogid,
      string username,
      string password,
      FileData file);
  }
}


www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.