16 references to ConcurrencyMode
dotnet-svcutil-lib (16)
FrameworkFork\System.ServiceModel\System\ServiceModel\CallbackBehaviorAttribute.cs (2)
14private ConcurrencyMode _concurrencyMode = ConcurrencyMode.Single;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
554if ((dispatchBehavior != null) && (dispatchBehavior.ConcurrencyMode == ConcurrencyMode.Single))
FrameworkFork\System.ServiceModel\System\ServiceModel\ConcurrencyMode.cs (4)
16static public bool IsDefined(ConcurrencyMode x) 19x == ConcurrencyMode.Single || 20x == ConcurrencyMode.Reentrant || 21x == ConcurrencyMode.Multiple ||
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ConcurrencyBehavior.cs (7)
15private ConcurrencyMode _concurrencyMode; 29internal static bool IsConcurrent(ConcurrencyMode concurrencyMode, bool ensureOrderedDispatch, bool hasSession) 31if (concurrencyMode != ConcurrencyMode.Single) 60if (endpointDispatcher.DispatchRuntime.ConcurrencyMode != ConcurrencyMode.Single) 81if (_concurrencyMode != ConcurrencyMode.Multiple) 97if (_concurrencyMode == ConcurrencyMode.Reentrant) 106if (_concurrencyMode != ConcurrencyMode.Multiple)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchRuntime.cs (2)
22private ConcurrencyMode _concurrencyMode; 87public ConcurrencyMode ConcurrencyMode