/// <remarks/>
 public void IDExchangeAsync(string InputListKey, IDOperationType Operation, PCIDType OutputType, string OutputSourceName, IDOutputFormatType OutputFormat, string ToWebEnv, CompressType eCompress, bool eCompressSpecified) {
     this.IDExchangeAsync(InputListKey, Operation, OutputType, OutputSourceName, OutputFormat, ToWebEnv, eCompress, eCompressSpecified, null);
 }
 /// <remarks/>
 public void IDExchangeAsync(string InputListKey, IDOperationType Operation, PCIDType OutputType, string OutputSourceName, IDOutputFormatType OutputFormat, string ToWebEnv, CompressType eCompress, bool eCompressSpecified, object userState) {
     if ((this.IDExchangeOperationCompleted == null)) {
         this.IDExchangeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnIDExchangeOperationCompleted);
     }
     this.InvokeAsync("IDExchange", new object[] {
                 InputListKey,
                 Operation,
                 OutputType,
                 OutputSourceName,
                 OutputFormat,
                 ToWebEnv,
                 eCompress,
                 eCompressSpecified}, this.IDExchangeOperationCompleted, userState);
 }
 public string IDExchange(string InputListKey, IDOperationType Operation, PCIDType OutputType, string OutputSourceName, IDOutputFormatType OutputFormat, string ToWebEnv, CompressType eCompress, [System.Xml.Serialization.XmlIgnoreAttribute()] bool eCompressSpecified, out string DownloadKey) {
     object[] results = this.Invoke("IDExchange", new object[] {
                 InputListKey,
                 Operation,
                 OutputType,
                 OutputSourceName,
                 OutputFormat,
                 ToWebEnv,
                 eCompress,
                 eCompressSpecified});
     DownloadKey = ((string)(results[1]));
     return ((string)(results[0]));
 }