Binding Constructors
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.
Initializes a new instance of the Binding class.
Overloads
Binding() |
Initializes a new instance of the Binding class with a default name and namespace. |
Binding(String, String) |
Initializes a new instance of the Binding class from a specified binding of the service. |
Binding()
- Source:
- Binding.cs
- Source:
- Binding.cs
- Source:
- Binding.cs
Initializes a new instance of the Binding class with a default name and namespace.
protected:
Binding();
protected Binding ();
Protected Sub New ()
Examples
BasicHttpBinding binding = new BasicHttpBinding();
Dim binding As BasicHttpBinding = New BasicHttpBinding()
Remarks
The default name is null
and the default namespace is http://tempuri.org/
.
Applies to
Binding(String, String)
- Source:
- Binding.cs
- Source:
- Binding.cs
- Source:
- Binding.cs
Initializes a new instance of the Binding class from a specified binding of the service.
protected:
Binding(System::String ^ name, System::String ^ ns);
protected Binding (string name, string ns);
new System.ServiceModel.Channels.Binding : string * string -> System.ServiceModel.Channels.Binding
Protected Sub New (name As String, ns As String)
Parameters
Exceptions
name
is null
or an empty string.
ns
is null
.
Remarks
The Name and Namespace together uniquely identify an instance of a Binding in the metadata of the service.