/// <remarks/>
 public void SuperstructureSearchAsync(string StrKey, StructureSearchOptions ssOptions, LimitsType limits) {
     this.SuperstructureSearchAsync(StrKey, ssOptions, limits, null);
 }
 /// <remarks/>
 public void SuperstructureSearchAsync(string StrKey, StructureSearchOptions ssOptions, LimitsType limits, object userState) {
     if ((this.SuperstructureSearchOperationCompleted == null)) {
         this.SuperstructureSearchOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSuperstructureSearchOperationCompleted);
     }
     this.InvokeAsync("SuperstructureSearch", new object[] {
                 StrKey,
                 ssOptions,
                 limits}, this.SuperstructureSearchOperationCompleted, userState);
 }
 public string SuperstructureSearch(string StrKey, StructureSearchOptions ssOptions, LimitsType limits) {
     object[] results = this.Invoke("SuperstructureSearch", new object[] {
                 StrKey,
                 ssOptions,
                 limits});
     return ((string)(results[0]));
 }