/// <remarks/>
 public void describeSObjectListViewsAsync(string sObjectType, bool recentsOnly, listViewIsSoqlCompatible isSoqlCompatible, int limit, int offset, object userState) {
     if ((this.describeSObjectListViewsOperationCompleted == null)) {
         this.describeSObjectListViewsOperationCompleted = new System.Threading.SendOrPostCallback(this.OndescribeSObjectListViewsOperationCompleted);
     }
     this.InvokeAsync("describeSObjectListViews", new object[] {
                 sObjectType,
                 recentsOnly,
                 isSoqlCompatible,
                 limit,
                 offset}, this.describeSObjectListViewsOperationCompleted, userState);
 }
 /// <remarks/>
 public System.IAsyncResult BegindescribeSObjectListViews(string sObjectType, bool recentsOnly, listViewIsSoqlCompatible isSoqlCompatible, int limit, int offset, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("describeSObjectListViews", new object[] {
                 sObjectType,
                 recentsOnly,
                 isSoqlCompatible,
                 limit,
                 offset}, callback, asyncState);
 }
 /// <remarks/>
 public void describeSObjectListViewsAsync(string sObjectType, bool recentsOnly, listViewIsSoqlCompatible isSoqlCompatible, int limit, int offset) {
     this.describeSObjectListViewsAsync(sObjectType, recentsOnly, isSoqlCompatible, limit, offset, null);
 }
 public DescribeSoqlListView[] describeSObjectListViews(string sObjectType, bool recentsOnly, listViewIsSoqlCompatible isSoqlCompatible, int limit, int offset) {
     object[] results = this.Invoke("describeSObjectListViews", new object[] {
                 sObjectType,
                 recentsOnly,
                 isSoqlCompatible,
                 limit,
                 offset});
     return ((DescribeSoqlListView[])(results[0]));
 }