IOperationBehavior.AddBindingParameters 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 pass data at runtime to bindings to support custom behavior.
public:
void AddBindingParameters(System::ServiceModel::Description::OperationDescription ^ operationDescription, System::ServiceModel::Channels::BindingParameterCollection ^ bindingParameters);
public void AddBindingParameters (System.ServiceModel.Description.OperationDescription operationDescription, System.ServiceModel.Channels.BindingParameterCollection bindingParameters);
abstract member AddBindingParameters : System.ServiceModel.Description.OperationDescription * System.ServiceModel.Channels.BindingParameterCollection -> unit
Public Sub AddBindingParameters (operationDescription As OperationDescription, bindingParameters As BindingParameterCollection)
Parameters
- operationDescription
- OperationDescription
The operation being examined. Use for examination only. If the operation description is modified, the results are undefined.
- bindingParameters
- BindingParameterCollection
The collection of objects that binding elements require to support the behavior.
Remarks
Implement the AddBindingParameters method to provide binding elements with the extra objects they require to support the operation behavior. When binding parameters are added here, the binding can locate and process these objects when the channel listener or channel factory is created. Typically, you implement the AddBindingParameters method to pass information about the operation to a custom binding element so that it can build a supporting channel correctly. Return no value if no modifications are required.