19 references to ConcurrencyMode
Client.ChannelLayer.IntegrationTests (2)
DuplexChannelShapeTests.4.0.0.cs (2)
193[CallbackBehavior(ConcurrencyMode = ConcurrencyMode.Single, UseSynchronizationContext = false)] 214[CallbackBehavior(ConcurrencyMode = ConcurrencyMode.Multiple, UseSynchronizationContext = false)]
System.ServiceModel.Primitives (17)
System\ServiceModel\CallbackBehaviorAttribute.cs (3)
15private ConcurrencyMode _concurrencyMode = ConcurrencyMode.Single; 20public ConcurrencyMode ConcurrencyMode
System\ServiceModel\Channels\ServiceChannel.cs (1)
534if ((dispatchBehavior != null) && (dispatchBehavior.ConcurrencyMode == ConcurrencyMode.Single))
System\ServiceModel\ConcurrencyMode.cs (4)
17static public bool IsDefined(ConcurrencyMode x) 20x == ConcurrencyMode.Single || 21x == ConcurrencyMode.Reentrant || 22x == ConcurrencyMode.Multiple ||
System\ServiceModel\Dispatcher\ConcurrencyBehavior.cs (7)
14private ConcurrencyMode _concurrencyMode; 28internal static bool IsConcurrent(ConcurrencyMode concurrencyMode, bool ensureOrderedDispatch, bool hasSession) 30if (concurrencyMode != ConcurrencyMode.Single) 59if (endpointDispatcher.DispatchRuntime.ConcurrencyMode != ConcurrencyMode.Single) 80if (_concurrencyMode != ConcurrencyMode.Multiple) 96if (_concurrencyMode == ConcurrencyMode.Reentrant) 105if (_concurrencyMode != ConcurrencyMode.Multiple)
System\ServiceModel\Dispatcher\DispatchRuntime.cs (2)
17private ConcurrencyMode _concurrencyMode; 77public ConcurrencyMode ConcurrencyMode