wasStitchNET – Blame information for rev 13

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>
14 public interface IXmlRpcStitch
15 {
16 [XmlRpcMethod]
17 void Stitch(string service, string server, string version, string path, XmlRpcStitchOptions options);
18 }
19 }