wasStitchNET – Diff between revs 14 and 15

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 14 Rev 15
1 /////////////////////////////////////////////////////////////////////////// 1 ///////////////////////////////////////////////////////////////////////////
2 // Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 // 2 // Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 //
3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, // 3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
4 // rights of fair usage, the disclaimer and warranty conditions. // 4 // rights of fair usage, the disclaimer and warranty conditions. //
5 /////////////////////////////////////////////////////////////////////////// 5 ///////////////////////////////////////////////////////////////////////////
6   6  
7 using CookComputing.XmlRpc; 7 using CookComputing.XmlRpc;
8   8  
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  
21
Generated by GNU Enscript 1.6.5.90.
28
Generated by GNU Enscript 1.6.5.90.
22   29  
23   30  
24   31