Esempio n. 1
0
 public SearchRequest(TwinfieldApi.TwinfieldFinderService.Header Header, string type, string pattern, int field, int firstRow, int maxRows, string[][] options)
 {
     this.Header   = Header;
     this.type     = type;
     this.pattern  = pattern;
     this.field    = field;
     this.firstRow = firstRow;
     this.maxRows  = maxRows;
     this.options  = options;
 }
Esempio n. 2
0
 public TwinfieldApi.TwinfieldFinderService.MessageOfErrorCodes[] Search(TwinfieldApi.TwinfieldFinderService.Header Header, string type, string pattern, int field, int firstRow, int maxRows, string[][] options, out TwinfieldApi.TwinfieldFinderService.FinderData data)
 {
     TwinfieldApi.TwinfieldFinderService.SearchRequest inValue = new TwinfieldApi.TwinfieldFinderService.SearchRequest();
     inValue.Header   = Header;
     inValue.type     = type;
     inValue.pattern  = pattern;
     inValue.field    = field;
     inValue.firstRow = firstRow;
     inValue.maxRows  = maxRows;
     inValue.options  = options;
     TwinfieldApi.TwinfieldFinderService.SearchResponse retVal = ((TwinfieldApi.TwinfieldFinderService.FinderSoap)(this)).Search(inValue);
     data = retVal.data;
     return(retVal.SearchResult);
 }