ClientCredentialsEndpointBehavior.AddBindingParameters Method

[This is prerelease documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Passes data at runtime to bindings to support custom behavior.

Namespace: Microsoft.ServiceBus
Assembly: Microsoft.ServiceBus (in microsoft.servicebus.dll)

Usage

    Dim instance As ClientCredentialsEndpointBehavior
Dim endpoint As ServiceEndpoint
Dim bindingParameters As BindingParameterCollection

instance.AddBindingParameters(endpoint, bindingParameters)

Syntax

'Declaration
Public Sub AddBindingParameters ( _
    endpoint As ServiceEndpoint, _
    bindingParameters As BindingParameterCollection _
)
public void AddBindingParameters (
    ServiceEndpoint endpoint,
    BindingParameterCollection bindingParameters
)
public:
virtual void AddBindingParameters (
    ServiceEndpoint^ endpoint, 
    BindingParameterCollection^ bindingParameters
) sealed
public final void AddBindingParameters (
    ServiceEndpoint endpoint, 
    BindingParameterCollection bindingParameters
)
public final function AddBindingParameters (
    endpoint : ServiceEndpoint, 
    bindingParameters : BindingParameterCollection
)

Parameters

  • endpoint
    The endpoint to modify.
  • bindingParameters
    The parameters to add.

Remarks

Implement AddBindingParameters to provide binding elements with the extra objects they require to support the endpoint behavior. When binding parameters are added here, the binding can locate these objects when the channel listener or channel factory is created. Typically, you implement AddBindingParameters to pass information about the endpoint to a custom binding element so that it can build a supporting channel correctly.

Return no value if no modifications are required.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003 , Windows Server 2008, and Windows 2000

Target Platforms

See Also

Reference

ClientCredentialsEndpointBehavior Class
ClientCredentialsEndpointBehavior Members
Microsoft.ServiceBus Namespace