示例#1
0
 /// ticket + arg1 + arg2 + arg3 + ServiceQueryOptions
 public IList <TransitType> GetPrivateCollection <TransitType, ArgType1, ArgType2, ArgType3>(
     ArgType1 arg1, ArgType2 arg2, ArgType3 arg3, ServiceQueryOptions options,
     WebClientImpl <TransitType> .GetCollectionDelegate <ArgType1, ArgType2, ArgType3> functor)
 {
     return(WebClientImpl <TransitType> .GetCollection <ArgType1, ArgType2, ArgType3>(
                Ticket, arg1, arg2, arg3, options, functor, Cache, DefaultCacheTimeSpan, Ticket));
 }
示例#2
0
 /// ticket + ServiceQueryOptions
 public IList <TransitType> GetPrivateCollection <TransitType>(
     ServiceQueryOptions options, WebClientImpl <TransitType> .GetCollectionDelegate functor)
 {
     return(WebClientImpl <TransitType> .GetCollection(
                Ticket, options, functor, Cache, DefaultCacheTimeSpan, Ticket));
 }
示例#3
0
 /// no parameters
 public IList <TransitType> GetCollection <TransitType>(
     WebClientImpl <TransitType> .GetCollectionDelegateNoArgs functor)
 {
     return(WebClientImpl <TransitType> .GetCollection(
                functor, Cache, DefaultCacheTimeSpan, DefaultCacheTicket));
 }