1 implementation of ISimplexSessionRouter
System.ServiceModel.Routing (1)
System\ServiceModel\Routing\RoutingService.cs (1)
38ISimplexSessionRouter,
9 references to ISimplexSessionRouter
System.ServiceModel.Routing (9)
System\ServiceModel\Routing\ClientFactory.cs (2)
31else if (contractType == typeof(ISimplexSessionRouter)) 339class SimplexSessionClient : RoutingClientBase<ISimplexSessionRouter>
System\ServiceModel\Routing\RoutingBehavior.cs (1)
102return typeof(ISimplexSessionRouter);
System\ServiceModel\Routing\RoutingChannelExtension.cs (2)
197Fx.Assert(contractType == typeof(ISimplexSessionRouter), "Was a new contract added?"); 198return new RoutingChannelExtension<ISimplexSessionRouter>(endpointBehavior);
System\ServiceModel\Routing\RoutingService.cs (4)
226IAsyncResult ISimplexSessionRouter.BeginProcessMessage(Message message, AsyncCallback callback, object state) 228return this.BeginProcessMessage<ISimplexSessionRouter>(message, callback, state); 231void ISimplexSessionRouter.EndProcessMessage(IAsyncResult result) 233this.EndProcessMessage<ISimplexSessionRouter>(result);