//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version: 1.0.2914.16 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ // // This source code was auto-generated by wsdl, Version=1.0.2914.16. // using System.Diagnostics; using System.Xml.Serialization; using System; using System.Web.Services.Protocols; using System.Web.Services; using System.Net; namespace RepoCleanup { /// ///

Cleanup Web service invocation.
/// Generated with wsdl.exe. /// Only change: construction setting the URL.

///

Copyright (c) 2002 Alexis Grandemange
/// Mail: alexis.grandemange@pagebox.net

///
This program is free software; you can redistribute it and/or
	/// modify it under the terms of the GNU Lesser General Public
	/// License as published by the Free Software Foundation; version
	/// 2.1 of the License.
	/// This library is distributed in the hope that it will be useful,
	/// but WITHOUT ANY WARRANTY; without even the implied warranty of
	/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
	/// GNU Lesser General Public License for more details.
	/// A copy of the GNU Lesser General Public License lesser.txt should be
	/// included in the distribution.
///
[System.Web.Services.WebServiceBindingAttribute(Name="RetrySoap", Namespace="Repository")] public class Retry : System.Web.Services.Protocols.SoapHttpClientProtocol { /// /// Modified constructor with the Web service URL. /// /// Web service URL [System.Diagnostics.DebuggerStepThroughAttribute()] public Retry(string url) { this.Url = url; } [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Web.Services.Protocols.SoapDocumentMethodAttribute("Repository/Cleanup", RequestNamespace="Repository", ResponseNamespace="Repository", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)] public string Cleanup(string user, string password) { object[] results = this.Invoke("Cleanup", new object[] { user, password}); return ((string)(results[0])); } [System.Diagnostics.DebuggerStepThroughAttribute()] public System.IAsyncResult BeginCleanup(string user, string password, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("Cleanup", new object[] { user, password}, callback, asyncState); } [System.Diagnostics.DebuggerStepThroughAttribute()] public string EndCleanup(System.IAsyncResult asyncResult) { object[] results = this.EndInvoke(asyncResult); return ((string)(results[0])); } } }