コード例 #1
0
 public CounterService(AspNetCoreCommunicationContext context)
 {
     _context = context;
     _semaphore = new SemaphoreSlim(1, 1);
 }
コード例 #2
0
 public GatewayService(StatelessServiceContext serviceContext, AspNetCoreCommunicationContext communicationContext)
     : base(serviceContext)
 {
     _communicationContext = communicationContext;
 }
コード例 #3
0
ファイル: SmsService.cs プロジェクト: CESARDELATORRE/Hosting
 public SmsService(StatefulServiceContext serviceContext, AspNetCoreCommunicationContext communicationContext)
     : base(serviceContext)
 {
     _communicationContext = communicationContext;
     _semaphore = new SemaphoreSlim(1, 1);
 }
コード例 #4
0
 public GatewayService(AspNetCoreCommunicationContext context)
 {
     _context = context;
 }