wasStitchNET – Diff between revs 13 and 14

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 13 Rev 14
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 14 public interface IXmlRpcStitch : IXmlRpcProxy
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 } 19 }
20   20