StandardEndpointElement.OnInitializeAndValidate Method

Definition

When called from a derived class, initializes and verifies the format of the specified service endpoint in a service application configuration file.

Overloads

OnInitializeAndValidate(ChannelEndpointElement)

When called from a derived class, initializes and verifies the format of the specified service endpoint in a service application configuration file.

OnInitializeAndValidate(ServiceEndpointElement)

When called from a derived class, initializes and verifies the format of the specified service endpoint in a service application configuration file.

OnInitializeAndValidate(ChannelEndpointElement)

When called from a derived class, initializes and verifies the format of the specified service endpoint in a service application configuration file.

protected:
 abstract void OnInitializeAndValidate(System::ServiceModel::Configuration::ChannelEndpointElement ^ channelEndpointElement);
protected abstract void OnInitializeAndValidate (System.ServiceModel.Configuration.ChannelEndpointElement channelEndpointElement);
abstract member OnInitializeAndValidate : System.ServiceModel.Configuration.ChannelEndpointElement -> unit
Protected MustOverride Sub OnInitializeAndValidate (channelEndpointElement As ChannelEndpointElement)

Parameters

channelEndpointElement
ChannelEndpointElement

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

Applies to

OnInitializeAndValidate(ServiceEndpointElement)

When called from a derived class, initializes and verifies the format of the specified service endpoint in a service application configuration file.

protected:
 abstract void OnInitializeAndValidate(System::ServiceModel::Configuration::ServiceEndpointElement ^ serviceEndpointElement);
protected abstract void OnInitializeAndValidate (System.ServiceModel.Configuration.ServiceEndpointElement serviceEndpointElement);
abstract member OnInitializeAndValidate : System.ServiceModel.Configuration.ServiceEndpointElement -> unit
Protected MustOverride Sub OnInitializeAndValidate (serviceEndpointElement As ServiceEndpointElement)

Parameters

serviceEndpointElement
ServiceEndpointElement

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

Applies to