WebScriptEnablingBehavior.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.
Confirms that the endpoint meets the requirements that allow it to function as an ASP.NET AJAX endpoint.
public:
override void Validate(System::ServiceModel::Description::ServiceEndpoint ^ endpoint);
public override void Validate (System.ServiceModel.Description.ServiceEndpoint endpoint);
override this.Validate : System.ServiceModel.Description.ServiceEndpoint -> unit
Public Overrides Sub Validate (endpoint As ServiceEndpoint)
Parameters
- endpoint
- ServiceEndpoint
The ServiceEndpoint that exposes the contract.
Exceptions
The endpoint does not meet one of the requirements for being an ASP.NET AJAX endpoint.
Remarks
Verifies that the endpoint is not null
, uses the HTTP or HTTPS schemes, does not use the XmlSerializer, uses either the HTTP GET or POST verb, that the MessageVersion of the binding is set to None, and that the binding contains a TransportBindingElement where ManualAddressing is set to true
. This method also checks that there are no SOAP headers or wrapper names on the methods, or other unsupported aspects of the operations.