1 type derived from WorkflowHostingEndpoint
System.WorkflowServices (1)
System\ServiceModel\Activities\Description\WorkflowRuntimeEndpoint.cs (1)
22public class WorkflowRuntimeEndpoint : WorkflowHostingEndpoint
14 references to WorkflowHostingEndpoint
System.ServiceModel.Activities (14)
System\ServiceModel\Activities\Description\WorkflowOperationBehavior.cs (1)
145this.isHostingEndpoint = endpoint is WorkflowHostingEndpoint;
System\ServiceModel\Activities\Description\WorkflowServiceBehavior.cs (1)
112return serviceEndpoint is WorkflowHostingEndpoint || serviceEndpoint.Contract.Behaviors.Contains(typeof(WorkflowContractBehaviorAttribute));
System\ServiceModel\Activities\Dispatcher\ControlOperationInvoker.cs (5)
96else if (endpoint is WorkflowHostingEndpoint) 379WorkflowHostingEndpoint = this.invoker.endpoint as WorkflowHostingEndpoint, 799else if (this.invoker.endpoint is WorkflowHostingEndpoint) 801WorkflowHostingEndpoint hostingEndpoint = (WorkflowHostingEndpoint)this.invoker.endpoint;
System\ServiceModel\Activities\Dispatcher\PersistenceContext.cs (1)
308throw FxTrace.Exception.AsError(WorkflowHostingEndpoint.CreateDispatchFaultException());
System\ServiceModel\Activities\WorkflowGetInstanceContext.cs (1)
12public WorkflowHostingEndpoint WorkflowHostingEndpoint
System\ServiceModel\Activities\WorkflowHostingEndpoint.cs (4)
104Fx.Assert(endpoint is WorkflowHostingEndpoint, "Must be hosting endpoint!"); 116Fx.Assert(endpoint is WorkflowHostingEndpoint, "Must be hosting endpoint!"); 139Fx.Assert(context.ServiceEndpoint is WorkflowHostingEndpoint, "serviceEnpoint must be of WorkflowHostingEndpoint type!"); 140Bookmark bookmark = ((WorkflowHostingEndpoint)context.ServiceEndpoint).OnResolveBookmark(context.Inputs, context.OperationContext, responseContext, out value);
System\ServiceModel\Activities\WorkflowServiceHost.cs (1)
649if (serviceEndpoint is WorkflowHostingEndpoint)