13 references to Host
System.ServiceModel (10)
System\ServiceModel\Diagnostics\TraceUtility.cs (1)
1086
hostReference = AspNetEnvironment.Current.GetAnnotationFromHost(context.
Host
);
System\ServiceModel\Security\IdentityModelServiceAuthorizationManager.cs (4)
550
OperationContext.Current.
Host
!= null &&
551
OperationContext.Current.
Host
.Description != null &&
552
OperationContext.Current.
Host
.Description.Behaviors != null)
554
serviceCredentials = OperationContext.Current.
Host
.Description.Behaviors.Find<ServiceCredentials>();
System\ServiceModel\Security\WSTrustServiceContract.cs (5)
153
if (OperationContext.Current != null && OperationContext.Current.
Host
!= null &&
154
OperationContext.Current.
Host
.Description != null)
156
ServiceCredentials serviceCreds = OperationContext.Current.
Host
.Description.Behaviors.Find<ServiceCredentials>();
673
ServiceDebugBehavior debugBehavior = OperationContext.Current.
Host
.Description.Behaviors.Find<ServiceDebugBehavior>();
686
FaultException faultException = OperationContext.Current.
Host
.Credentials.ExceptionMapper.FromException(ex, (requestEnvelopeVersion == EnvelopeVersion.Soap11) ? soap11Namespace : soap12Namespace, trustNamespace);
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\WorkflowOperationContext.cs (1)
671
thisPtr.OperationContext.
Host
.RaiseUnknownMessageReceived(thisPtr.OperationContext.IncomingMessage);
System.ServiceModel.Routing (1)
System\ServiceModel\Routing\RoutingService.cs (1)
62
ServiceHostBase host = this.operationContext.
Host
;
System.ServiceModel.Web (1)
System\ServiceModel\Web\OutgoingWebResponseContext.cs (1)
162
foreach (ServiceEndpoint endpoint in this.operationContext.
Host
.Description.Endpoints)