StandardEndpointElement.OnApplyConfiguration Method

Definition

When called from a derived class, loads the service description information from the configuration file and applies it to the runtime being constructed.

Overloads

OnApplyConfiguration(ServiceEndpoint, ChannelEndpointElement)

When called from a derived class, loads the service description information from the configuration file and applies it to the runtime being constructed.

OnApplyConfiguration(ServiceEndpoint, ServiceEndpointElement)

When called from a derived class, loads the service description information from the configuration file and applies it to the runtime being constructed.

OnApplyConfiguration(ServiceEndpoint, ChannelEndpointElement)

When called from a derived class, loads the service description information from the configuration file and applies it to the runtime being constructed.

protected:
 abstract void OnApplyConfiguration(System::ServiceModel::Description::ServiceEndpoint ^ endpoint, System::ServiceModel::Configuration::ChannelEndpointElement ^ channelEndpointElement);
protected abstract void OnApplyConfiguration (System.ServiceModel.Description.ServiceEndpoint endpoint, System.ServiceModel.Configuration.ChannelEndpointElement channelEndpointElement);
abstract member OnApplyConfiguration : System.ServiceModel.Description.ServiceEndpoint * System.ServiceModel.Configuration.ChannelEndpointElement -> unit
Protected MustOverride Sub OnApplyConfiguration (endpoint As ServiceEndpoint, channelEndpointElement As ChannelEndpointElement)

Parameters

endpoint
ServiceEndpoint

An endpoint that enables clients to find and communicate with the service.

channelEndpointElement
ChannelEndpointElement

An endpoint element that defines the physical transfer of messages back and forth between the client and the service.

Applies to

OnApplyConfiguration(ServiceEndpoint, ServiceEndpointElement)

When called from a derived class, loads the service description information from the configuration file and applies it to the runtime being constructed.

protected:
 abstract void OnApplyConfiguration(System::ServiceModel::Description::ServiceEndpoint ^ endpoint, System::ServiceModel::Configuration::ServiceEndpointElement ^ serviceEndpointElement);
protected abstract void OnApplyConfiguration (System.ServiceModel.Description.ServiceEndpoint endpoint, System.ServiceModel.Configuration.ServiceEndpointElement serviceEndpointElement);
abstract member OnApplyConfiguration : System.ServiceModel.Description.ServiceEndpoint * System.ServiceModel.Configuration.ServiceEndpointElement -> unit
Protected MustOverride Sub OnApplyConfiguration (endpoint As ServiceEndpoint, serviceEndpointElement As ServiceEndpointElement)

Parameters

endpoint
ServiceEndpoint

An endpoint that enables clients to find and communicate with the service.

serviceEndpointElement
ServiceEndpointElement

A service endpoint element of a service application.

Applies to