NetEventRelayBinding Constructors

Definition

Overloads

NetEventRelayBinding()

Initializes a new instance of the NetEventRelayBinding class.

NetEventRelayBinding(String)

Initializes a new instance of the NetEventRelayBinding class, using the specified configuration.

NetEventRelayBinding(EndToEndSecurityMode, RelayEventSubscriberAuthenticationType)

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

NetEventRelayBinding(RelayedOnewayTransportBindingElement, BinaryMessageEncodingBindingElement, NetOnewayRelaySecurity)

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

NetEventRelayBinding()

Initializes a new instance of the NetEventRelayBinding class.

public NetEventRelayBinding ();
Public Sub New ()

Applies to

NetEventRelayBinding(String)

Initializes a new instance of the NetEventRelayBinding class, using the specified configuration.

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

Parameters

configurationName
String

The name of the configuration to use.

Applies to

NetEventRelayBinding(EndToEndSecurityMode, RelayEventSubscriberAuthenticationType)

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

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

Parameters

securityMode
EndToEndSecurityMode

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

relayClientAuthenticationType
RelayEventSubscriberAuthenticationType

The type of authentication used by the client.

Applies to

NetEventRelayBinding(RelayedOnewayTransportBindingElement, BinaryMessageEncodingBindingElement, NetOnewayRelaySecurity)

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

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

Parameters

transport
RelayedOnewayTransportBindingElement

The transport to use.

encoding
BinaryMessageEncodingBindingElement

The encoding to use.

security
NetOnewayRelaySecurity

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

Applies to