EndpointDiscoveryBehavior Class

Definition

Controls the content of the EndpointDiscoveryMetadata returned by a discovery endpoint.

public ref class EndpointDiscoveryBehavior : System::ServiceModel::Description::IEndpointBehavior
public class EndpointDiscoveryBehavior : System.ServiceModel.Description.IEndpointBehavior
type EndpointDiscoveryBehavior = class
    interface IEndpointBehavior
Public Class EndpointDiscoveryBehavior
Implements IEndpointBehavior
Inheritance
EndpointDiscoveryBehavior
Implements

Remarks

This behavior is used to configure the various discovery settings for an endpoint, such as its discoverability, scopes, and any custom extensions to its metadata. A user creates a new instance of this type and adds it to the specific endpoint whose EndpointDiscoveryMetadata must be configured. It can also be used to turn off discovery for specific endpoint using the Enabled property. Note that the EndpointDiscoveryBehavior on an endpoint is ignored if ServiceDiscoveryBehavior is not present. You cannot make an endpoint discoverable through EndpointDiscoveryMetadata without first adding a ServiceDiscoveryBehavior to your service.

Constructors

EndpointDiscoveryBehavior()

Creates a new instance of the EndpointDiscoveryBehavior class.

Properties

ContractTypeNames

Gets the contract type names associated with the endpoint.

Enabled

Gets or sets a value that controls the discoverability of the associated endpoint.

Extensions

Gets the extensions associated with the endpoint.

Scopes

Gets the scopes associated with the endpoint.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Explicit Interface Implementations

IEndpointBehavior.AddBindingParameters(ServiceEndpoint, BindingParameterCollection)

Not implemented.

IEndpointBehavior.ApplyClientBehavior(ServiceEndpoint, ClientRuntime)

Not implemented.

IEndpointBehavior.ApplyDispatchBehavior(ServiceEndpoint, EndpointDispatcher)

Not implemented.

IEndpointBehavior.Validate(ServiceEndpoint)

Not implemented.

Applies to