|
Revision 10205, 0.5 kB
(checked in by mayuki, 9 months ago)
|
|
import MTFileUploader
|
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | using System;
|
|---|
| 2 | using System.Collections.Generic;
|
|---|
| 3 | using System.Linq;
|
|---|
| 4 | using System.Text;
|
|---|
| 5 | using CookComputing.XmlRpc;
|
|---|
| 6 |
|
|---|
| 7 | namespace MTFileUploader
|
|---|
| 8 | {
|
|---|
| 9 | public interface IMetaWeblog : IXmlRpcProxy
|
|---|
| 10 | {
|
|---|
| 11 | [XmlRpcMethod("metaWeblog.getUsersBlogs")]
|
|---|
| 12 | Object[] GetUsersBlogs(Int32 blogId, String userName, String password);
|
|---|
| 13 |
|
|---|
| 14 | [XmlRpcMethod("metaWeblog.newMediaObject")]
|
|---|
| 15 | Object NewMediaObject(Int32 blogId, String userName, String password, XmlRpcStruct mediaObject);
|
|---|
| 16 | }
|
|---|
| 17 | }
|
|---|