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)
15
private
ConcurrencyMode
_concurrencyMode =
ConcurrencyMode
.Single;
20
public
ConcurrencyMode
ConcurrencyMode
System\ServiceModel\Channels\ServiceChannel.cs (1)
534
if ((dispatchBehavior != null) && (dispatchBehavior.ConcurrencyMode ==
ConcurrencyMode
.Single))
System\ServiceModel\ConcurrencyMode.cs (4)
17
static public bool IsDefined(
ConcurrencyMode
x)
20
x ==
ConcurrencyMode
.Single ||
21
x ==
ConcurrencyMode
.Reentrant ||
22
x ==
ConcurrencyMode
.Multiple ||
System\ServiceModel\Dispatcher\ConcurrencyBehavior.cs (7)
14
private
ConcurrencyMode
_concurrencyMode;
28
internal static bool IsConcurrent(
ConcurrencyMode
concurrencyMode, bool ensureOrderedDispatch, bool hasSession)
30
if (concurrencyMode !=
ConcurrencyMode
.Single)
59
if (endpointDispatcher.DispatchRuntime.ConcurrencyMode !=
ConcurrencyMode
.Single)
80
if (_concurrencyMode !=
ConcurrencyMode
.Multiple)
96
if (_concurrencyMode ==
ConcurrencyMode
.Reentrant)
105
if (_concurrencyMode !=
ConcurrencyMode
.Multiple)
System\ServiceModel\Dispatcher\DispatchRuntime.cs (2)
17
private
ConcurrencyMode
_concurrencyMode;
77
public
ConcurrencyMode
ConcurrencyMode