wasStitchNET – Diff between revs 14 and 15

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 14 Rev 15
Line 9... Line 9...
9 namespace wasStitchNET.XmlRpc.Methods 9 namespace wasStitchNET.XmlRpc.Methods
10 { 10 {
11 /// <summary> 11 /// <summary>
12 /// The interface for Xml RPC Stich Method. 12 /// The interface for Xml RPC Stich Method.
13 /// </summary> 13 /// </summary>
14 public interface IXmlRpcStitch : IXmlRpcProxy 14 public interface IXmlRpcStitch
15 { 15 {
16 [XmlRpcMethod] 16 [XmlRpcMethod]
17 void Stitch(string service, string server, string version, string path, XmlRpcStitchOptions options); 17 void Stitch(string service, string server, string version, string path, XmlRpcStitchOptions options);
18 } 18 }
-   19  
-   20 /// <summary>
-   21 /// IXmlRpcStitch proxy for performing XML-RPC calls.
-   22 /// </summary>
-   23 public interface IXmlRpcStitchProxy : IXmlRpcStitch
-   24 {
-   25 }
19 } 26 }
20   27