11 implementations of IsSynchronous
System.ServiceModel (6)
System\ServiceModel\Dispatcher\AsyncMethodInvoker.cs (1)
47public bool IsSynchronous
System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
785public bool IsSynchronous
System\ServiceModel\Dispatcher\SyncMethodInvoker.cs (1)
48public bool IsSynchronous
System\ServiceModel\Dispatcher\TaskMethodInvoker.cs (1)
46public bool IsSynchronous
System\ServiceModel\Security\NegotiationTokenAuthenticator.cs (1)
1026public bool IsSynchronous { get { return true; } }
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (1)
1224public bool IsSynchronous { get { return true; } }
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\UdpContractFilterBehavior.cs (1)
47public bool IsSynchronous
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\HelpOperationInvoker.cs (1)
51public bool IsSynchronous
System\ServiceModel\Dispatcher\HttpUnhandledOperationInvoker.cs (1)
23public bool IsSynchronous
System.WorkflowServices (2)
System\ServiceModel\Dispatcher\ServiceOperationInvoker.cs (1)
32public bool IsSynchronous
System\ServiceModel\Dispatcher\WorkflowOperationInvoker.cs (1)
96public bool IsSynchronous
3 references to IsSynchronous
System.ServiceModel (1)
System\ServiceModel\Dispatcher\DispatchOperationRuntime.cs (1)
79this.isSynchronous = operation.Invoker.IsSynchronous;
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Dispatcher\ControlOperationInvoker.cs (1)
1005if (this.innerInvoker.IsSynchronous)
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\ServiceOperationInvoker.cs (1)
34get { return this.innerInvoker.IsSynchronous; }