EqImage
//
// This source code was auto-generated by Microsoft.VSDesigner, Version
1.1.4322.510.
//
namespace Quisque {
using System.Diagnostics;
using System.Xml.Serialization;
using System;
using System.Web.Services.Protocols;
using System.ComponentModel;
using System.Web.Services;
/// <remarks/>
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Web.Services.WebServiceBindingAttribute(Name="CEqImageSoap",
Namespace="http://www.quisque.com/fr/techno/eqimage/")]
public class CEqImage : System.Web.Services.Protocols.SoapHttpClientProtocol {
/// <remarks/>
public CEqImage() {
this.Url = "http://www.quisque.com/fr/techno/eqimage/EqImage.asmx";
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.quisque.com/fr/techno/eqimage/Compare",
RequestNamespace="http://www.quisque.com/fr/techno/eqimage/",
ResponseNamespace="http://www.quisque.com/fr/techno/eqimage/",
Use=System.Web.Services.Description.SoapBindingUse.Literal,
ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public System.Double Compare(string url1, string url2) {
object[] results = this.Invoke("Compare", new object[] {
url1,
url2});
return ((System.Double)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginCompare(string url1, string url2,
System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("Compare", new object[] {
url1,
url2}, callback, asyncState);
}
/// <remarks/>
public System.Double EndCompare(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((System.Double)(results[0]));
}
/// <remarks/>
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.quisque.com/fr/techno/eqimage/CompareStream",
RequestNamespace="http://www.quisque.com/fr/techno/eqimage/",
ResponseNamespace="http://www.quisque.com/fr/techno/eqimage/",
Use=System.Web.Services.Description.SoapBindingUse.Literal,
ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public System.Double CompareStream( byte[] img1, byte[] img2 ) {
object[] results = this.Invoke("CompareStream", new object[] {
img1,
img2});
return ((System.Double)(results[0]));
}
/// <remarks/>
public System.IAsyncResult BeginCompareStream( byte[] img1, byte[] img2,
System.AsyncCallback callback, object asyncState) {
return this.BeginInvoke("CompareStream", new object[] {
img1,
img2}, callback, asyncState);
}
/// <remarks/>
public System.Double EndCompareStream(System.IAsyncResult asyncResult) {
object[] results = this.EndInvoke(asyncResult);
return ((System.Double)(results[0]));
}
}
}