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