EqImage secure

Reference.cs


//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version: 1.1.4322.573
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
//
// ASP.NET Web Matrix
//
namespace EqImageProxy
{
using System.Diagnostics;
using System.Xml.Serialization;
using System;
using System.Web.Services.Protocols;
using System.ComponentModel;
using System.Web.Services;

[System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Web.Services.WebServiceBindingAttribute(Name="CEqImageSecureSoap", Namespace=http://www.quisque.com/fr/techno/eqimage/secure/)]

public class CEqImageSecure : Microsoft.Web.Services.WebServicesClientProtocol {
 public CEqImageSecure() {
  this.Url = http://www.quisque.com/fr/techno/eqimage/secure/eqimage.asmx;
 }

[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.quisque.com/fr/techno/eqimage/secure/Compare", RequestNamespace="http://www.quisque.com/fr/techno/eqimage/secure/", ResponseNamespace="http://www.quisque.com/fr/techno/eqimage/secure/", 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]));
 }

public System.IAsyncResult BeginCompare(string url1, string url2, System.AsyncCallback callback, object asyncState) {
  return this.BeginInvoke("Compare", new object[] { url1, url2}, callback, asyncState);
 }

 public System.Double EndCompare(System.IAsyncResult asyncResult) {
  object[] results = this.EndInvoke(asyncResult);
  return ((System.Double)(results[0]));
 }

[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.quisque.com/fr/techno/eqimage/secure/CompareStream", RequestNamespace="http://www.quisque.com/fr/techno/eqimage/secure/", ResponseNamespace="http://www.quisque.com/fr/techno/eqimage/secure/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
 public System.Double CompareStream([System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] System.Byte[] img1, [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] System.Byte[] img2) {
  object[] results = this.Invoke("CompareStream", new object[] { img1, img2});
  return ((System.Double)(results[0]));
 }

public System.IAsyncResult BeginCompareStream(System.Byte[] img1, System.Byte[] img2, System.AsyncCallback callback, object asyncState) {
  return this.BeginInvoke("CompareStream", new object[] { img1, img2}, callback, asyncState);
}

 public System.Double EndCompareStream(System.IAsyncResult asyncResult) {
  object[] results = this.EndInvoke(asyncResult);
  return ((System.Double)(results[0]));
 }
}