/// <remarks/>
 public void InputListTextAsync(string ids, PCIDType idType, object userState) {
     if ((this.InputListTextOperationCompleted == null)) {
         this.InputListTextOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInputListTextOperationCompleted);
     }
     this.InvokeAsync("InputListText", new object[] {
                 ids,
                 idType}, this.InputListTextOperationCompleted, userState);
 }
 public string InputListText(string ids, PCIDType idType) {
     object[] results = this.Invoke("InputListText", new object[] {
                 ids,
                 idType});
     return ((string)(results[0]));
 }
 /// <remarks/>
 public void InputListTextAsync(string ids, PCIDType idType) {
     this.InputListTextAsync(ids, idType, null);
 }
 /// <remarks/>
 public void InputListStringAsync(string[] strids, PCIDType idType, string SourceName) {
     this.InputListStringAsync(strids, idType, SourceName, null);
 }
 /// <remarks/>
 public void InputListStringAsync(string[] strids, PCIDType idType, string SourceName, object userState) {
     if ((this.InputListStringOperationCompleted == null)) {
         this.InputListStringOperationCompleted = new System.Threading.SendOrPostCallback(this.OnInputListStringOperationCompleted);
     }
     this.InvokeAsync("InputListString", new object[] {
                 strids,
                 idType,
                 SourceName}, this.InputListStringOperationCompleted, userState);
 }
 public string InputListString([System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)] string[] strids, PCIDType idType, string SourceName) {
     object[] results = this.Invoke("InputListString", new object[] {
                 strids,
                 idType,
                 SourceName});
     return ((string)(results[0]));
 }
 /// <remarks/>
 public void InputListAsync(int[] ids, PCIDType idType) {
     this.InputListAsync(ids, idType, 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);
 }
 /// <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);
 }
 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]));
 }