wasStitchNET – Diff between revs 15 and 16

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 15 Rev 16
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 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   19  
20 /// <summary> 20 /// <summary>
21 /// IXmlRpcStitch proxy for performing XML-RPC calls. 21 /// IXmlRpcStitch proxy for performing XML-RPC calls.
22 /// </summary> 22 /// </summary>
23 public interface IXmlRpcStitchProxy : IXmlRpcStitch 23 public interface IXmlRpcStitchProxy : IXmlRpcStitch, IXmlRpcProxy
24 { 24 {
25 } 25 }
26 } 26 }
27   27  
28
Generated by GNU Enscript 1.6.5.90.
28
Generated by GNU Enscript 1.6.5.90.
29   29  
30   30  
31   31