Esempio n. 1
0
 /// <remarks/>
 public void getPublicHolidaysForDateRangeAsync(DateType fromDate, DateType toDate, string country, string region, object userState)
 {
     if ((this.getPublicHolidaysForDateRangeOperationCompleted == null))
     {
         this.getPublicHolidaysForDateRangeOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetPublicHolidaysForDateRangeOperationCompleted);
     }
     this.InvokeAsync("getPublicHolidaysForDateRange", new object[] {
         fromDate,
         toDate,
         country,
         region
     }, this.getPublicHolidaysForDateRangeOperationCompleted, userState);
 }
Esempio n. 2
0
 /// <remarks/>
 public void isPublicHolidayAsync(DateType date, string country, string region)
 {
     this.isPublicHolidayAsync(date, country, region, null);
 }
Esempio n. 3
0
 /// <remarks/>
 public void getPublicHolidaysForDateRangeAsync(DateType fromDate, DateType toDate, string country, string region)
 {
     this.getPublicHolidaysForDateRangeAsync(fromDate, toDate, country, region, null);
 }
Esempio n. 4
0
        public PublicHolidayCollectionType getPublicHolidaysForDateRange(DateType fromDate, DateType toDate, string country, string region)
        {
            object[] results = this.Invoke("getPublicHolidaysForDateRange", new object[] {
                fromDate,
                toDate,
                country,
                region
            });

            return((PublicHolidayCollectionType)(results[0]));
        }