wasStitchNET – Blame information for rev 16

Subversion Repositories:
Rev:
Rev Author Line No. Line
13 office 1 ///////////////////////////////////////////////////////////////////////////
2 // Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 //
3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
4 // rights of fair usage, the disclaimer and warranty conditions. //
5 ///////////////////////////////////////////////////////////////////////////
6  
7 using CookComputing.XmlRpc;
8  
9 namespace wasStitchNET.XmlRpc.Methods
10 {
11 /// <summary>
12 /// The interface for Xml RPC Stich Method.
13 /// </summary>
15 office 14 public interface IXmlRpcStitch
13 office 15 {
16 [XmlRpcMethod]
17 void Stitch(string service, string server, string version, string path, XmlRpcStitchOptions options);
18 }
15 office 19  
20 /// <summary>
21 /// IXmlRpcStitch proxy for performing XML-RPC calls.
22 /// </summary>
16 office 23 public interface IXmlRpcStitchProxy : IXmlRpcStitch, IXmlRpcProxy
15 office 24 {
25 }
13 office 26 }