Binding Constructors

Definition

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

Initializes a new instance of the Binding class with a default name and namespace.

C#
protected Binding();

Examples

C#
BasicHttpBinding binding = new BasicHttpBinding();

Remarks

The default name is null and the default namespace is http://tempuri.org/.

Applies to

.NET 10 (package-provided) a ďalšie verzie
Produkt Verzie
.NET Core 1.0, Core 1.1, 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
UWP 10.0

Binding(String, String)

Source:
Binding.cs
Source:
Binding.cs

Initializes a new instance of the Binding class from a specified binding of the service.

C#
protected Binding(string name, string ns);

Parameters

name
String

The Name of the binding.

ns
String

The Namespace of the binding.

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.

Applies to

.NET 10 (package-provided) a ďalšie verzie
Produkt Verzie
.NET Core 1.0, Core 1.1, 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
UWP 10.0