コード例 #1
0
ファイル: SessionManager.cs プロジェクト: qwdf1615/sncore
 /// ticket + arg1 + arg2 + arg3
 public int GetCount <TransitType, ArgType1, ArgType2, ArgType3>(
     ArgType1 arg1, ArgType2 arg2, ArgType3 arg3,
     WebClientImpl <TransitType> .GetItemDelegateCount <ArgType1, ArgType2, ArgType3> functor)
 {
     return(WebClientImpl <TransitType> .GetCount(
                Ticket, arg1, arg2, arg3, functor, Cache, DefaultCacheTimeSpan, DefaultCacheTicket));
 }
コード例 #2
0
ファイル: SessionManager.cs プロジェクト: qwdf1615/sncore
 /// ticket
 public int GetCount <TransitType>(
     WebClientImpl <TransitType> .GetItemDelegateCount functor)
 {
     return(WebClientImpl <TransitType> .GetCount(
                Ticket, functor, Cache, DefaultCacheTimeSpan, DefaultCacheTicket));
 }