IEndpointBehavior.Validate(ServiceEndpoint) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Implement to confirm that the endpoint meets some intended criteria.
public:
void Validate(System::ServiceModel::Description::ServiceEndpoint ^ endpoint);
public void Validate (System.ServiceModel.Description.ServiceEndpoint endpoint);
abstract member Validate : System.ServiceModel.Description.ServiceEndpoint -> unit
Public Sub Validate (endpoint As ServiceEndpoint)
Parameters
- endpoint
- ServiceEndpoint
The endpoint to validate.
Remarks
Implement the Validate method to examine the structure to confirm any set of criteria. It is not necessary to perform any customizations in ApplyClientBehavior or ApplyDispatchBehavior to make use of this method. If the endpoint passes validation, return; otherwise, throw an exception.
For example, the Validate method can be use to ensure that all endpoints use an approved corporate binding.