NetOnewayRelayBinding Constructors

Definition

Overloads

NetOnewayRelayBinding()

Initializes a new instance of the NetOnewayRelayBinding class.

NetOnewayRelayBinding(NetOnewayRelaySecurity)

Initializes a new instance of the NetOnewayRelayBinding class, using the specified security settings.

NetOnewayRelayBinding(String)

Initializes a new instance of the NetOnewayRelayBinding class using the specified configuration.

NetOnewayRelayBinding(EndToEndSecurityMode, RelayClientAuthenticationType)

Initializes a new instance of the NetOnewayRelayBinding class, using the specified security mode and authentication type.

NetOnewayRelayBinding(RelayedOnewayConnectionMode, EndToEndSecurityMode, RelayClientAuthenticationType)

Initializes a new instance of the NetOnewayRelayBinding class, using the specified connection and security modes, as well as the authentication type.

NetOnewayRelayBinding(RelayedOnewayTransportBindingElement, BinaryMessageEncodingBindingElement, NetOnewayRelaySecurity)

Initializes a new instance of theNetOnewayRelayBinding class, using the specified transport, encoding, and security.

NetOnewayRelayBinding()

Initializes a new instance of the NetOnewayRelayBinding class.

public NetOnewayRelayBinding ();
Public Sub New ()

Applies to

NetOnewayRelayBinding(NetOnewayRelaySecurity)

Initializes a new instance of the NetOnewayRelayBinding class, using the specified security settings.

protected NetOnewayRelayBinding (Microsoft.ServiceBus.NetOnewayRelaySecurity security);
new Microsoft.ServiceBus.NetOnewayRelayBinding : Microsoft.ServiceBus.NetOnewayRelaySecurity -> Microsoft.ServiceBus.NetOnewayRelayBinding
Protected Sub New (security As NetOnewayRelaySecurity)

Parameters

security
NetOnewayRelaySecurity

The security settings.

Applies to

NetOnewayRelayBinding(String)

Initializes a new instance of the NetOnewayRelayBinding class using the specified configuration.

public NetOnewayRelayBinding (string configurationName);
new Microsoft.ServiceBus.NetOnewayRelayBinding : string -> Microsoft.ServiceBus.NetOnewayRelayBinding
Public Sub New (configurationName As String)

Parameters

configurationName
String

The name of the configuration to use.

Applies to

NetOnewayRelayBinding(EndToEndSecurityMode, RelayClientAuthenticationType)

Initializes a new instance of the NetOnewayRelayBinding class, using the specified security mode and authentication type.

public NetOnewayRelayBinding (Microsoft.ServiceBus.EndToEndSecurityMode securityMode, Microsoft.ServiceBus.RelayClientAuthenticationType relayClientAuthenticationType);
new Microsoft.ServiceBus.NetOnewayRelayBinding : Microsoft.ServiceBus.EndToEndSecurityMode * Microsoft.ServiceBus.RelayClientAuthenticationType -> Microsoft.ServiceBus.NetOnewayRelayBinding
Public Sub New (securityMode As EndToEndSecurityMode, relayClientAuthenticationType As RelayClientAuthenticationType)

Parameters

securityMode
EndToEndSecurityMode

The security mode.

relayClientAuthenticationType
RelayClientAuthenticationType

The authentication type.

Applies to

NetOnewayRelayBinding(RelayedOnewayConnectionMode, EndToEndSecurityMode, RelayClientAuthenticationType)

Initializes a new instance of the NetOnewayRelayBinding class, using the specified connection and security modes, as well as the authentication type.

protected NetOnewayRelayBinding (Microsoft.ServiceBus.RelayedOnewayConnectionMode connectionMode, Microsoft.ServiceBus.EndToEndSecurityMode securityMode, Microsoft.ServiceBus.RelayClientAuthenticationType relayClientAuthenticationType);
new Microsoft.ServiceBus.NetOnewayRelayBinding : Microsoft.ServiceBus.RelayedOnewayConnectionMode * Microsoft.ServiceBus.EndToEndSecurityMode * Microsoft.ServiceBus.RelayClientAuthenticationType -> Microsoft.ServiceBus.NetOnewayRelayBinding
Protected Sub New (connectionMode As RelayedOnewayConnectionMode, securityMode As EndToEndSecurityMode, relayClientAuthenticationType As RelayClientAuthenticationType)

Parameters

connectionMode
RelayedOnewayConnectionMode

The connection mode.

securityMode
EndToEndSecurityMode

The type of security used with the SOAP message and for the client.

relayClientAuthenticationType
RelayClientAuthenticationType

The type of authentication used by the client.

Applies to

NetOnewayRelayBinding(RelayedOnewayTransportBindingElement, BinaryMessageEncodingBindingElement, NetOnewayRelaySecurity)

Initializes a new instance of theNetOnewayRelayBinding class, using the specified transport, encoding, and security.

protected NetOnewayRelayBinding (Microsoft.ServiceBus.RelayedOnewayTransportBindingElement transport, System.ServiceModel.Channels.BinaryMessageEncodingBindingElement encoding, Microsoft.ServiceBus.NetOnewayRelaySecurity security);
new Microsoft.ServiceBus.NetOnewayRelayBinding : Microsoft.ServiceBus.RelayedOnewayTransportBindingElement * System.ServiceModel.Channels.BinaryMessageEncodingBindingElement * Microsoft.ServiceBus.NetOnewayRelaySecurity -> Microsoft.ServiceBus.NetOnewayRelayBinding
Protected Sub New (transport As RelayedOnewayTransportBindingElement, encoding As BinaryMessageEncodingBindingElement, security As NetOnewayRelaySecurity)

Parameters

transport
RelayedOnewayTransportBindingElement

The transport element containing the core transport settings.

encoding
BinaryMessageEncodingBindingElement

The encoding element.

security
NetOnewayRelaySecurity

The security settings.

Applies to