4 writes to UnhandledDispatchOperation
System.ServiceModel (3)
System\ServiceModel\Description\DispatcherBuilder.cs (1)
1046parent.UnhandledDispatchOperation = child;
System\ServiceModel\Security\NegotiationTokenAuthenticator.cs (1)
1012endpointDispatcher.DispatchRuntime.UnhandledDispatchOperation = operation;
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (1)
1210endpointDispatcher.DispatchRuntime.UnhandledDispatchOperation = operation;
System.ServiceModel.Web (1)
System\ServiceModel\Description\WebHttpBehavior.cs (1)
233endpointDispatcher.DispatchRuntime.UnhandledDispatchOperation = new DispatchOperation(endpointDispatcher.DispatchRuntime, "*", WildcardAction, WildcardAction);
15 references to UnhandledDispatchOperation
System.ServiceModel (5)
System\ServiceModel\Description\DispatcherBuilder.cs (3)
1114if (dispatchOperation == null && dispatch.UnhandledDispatchOperation != null && dispatch.UnhandledDispatchOperation.Name == operation.Name) 1116dispatchOperation = dispatch.UnhandledDispatchOperation;
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (1)
102DispatchOperationRuntime unhandled = new DispatchOperationRuntime(dispatch.UnhandledDispatchOperation, this);
System\ServiceModel\Dispatcher\TransactionBehavior.cs (1)
141DispatchOperation unhandled = dispatch.UnhandledDispatchOperation;
System.ServiceModel.Discovery (3)
System\ServiceModel\Discovery\UdpContractFilterBehavior.cs (3)
24if (clientRuntime != null && clientRuntime.CallbackDispatchRuntime != null && clientRuntime.CallbackDispatchRuntime.UnhandledDispatchOperation != null) 26clientRuntime.CallbackDispatchRuntime.UnhandledDispatchOperation.Invoker = new UnhandledActionOperationInvoker(); 38endpointDispatcher.DispatchRuntime.UnhandledDispatchOperation.Invoker = new UnhandledActionOperationInvoker();
System.ServiceModel.Web (7)
System\ServiceModel\Description\WebHttpBehavior.cs (7)
202endpointDispatcher.DispatchRuntime.UnhandledDispatchOperation); 234endpointDispatcher.DispatchRuntime.UnhandledDispatchOperation.DeserializeRequest = false; 235endpointDispatcher.DispatchRuntime.UnhandledDispatchOperation.SerializeReply = false; 236endpointDispatcher.DispatchRuntime.UnhandledDispatchOperation.Invoker = new HttpUnhandledOperationInvoker { HelpUri = this.HelpUri }; 249else if (endpointDispatcher.DispatchRuntime.UnhandledDispatchOperation.Name == od.Name) 251dop = endpointDispatcher.DispatchRuntime.UnhandledDispatchOperation; 290Invoker = new HelpOperationInvoker(helpPage, endpointDispatcher.DispatchRuntime.UnhandledDispatchOperation.Invoker),