TransportType Enum
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.
An enumeration that sets the messaging protocol to either NetMessaging (a proprietary protocol to Azure Service Bus) or AMQP (an industry standard).
public enum TransportType
type TransportType =
Public Enum TransportType
- Inheritance
-
TransportType
Fields
Name | Value | Description |
---|---|---|
NetMessaging | 0 | The network messaging transport type. |
Amqp | 1 | The Advanced Message Queuing Protocol (AMQP) transport type. |
Remarks
Although NetMessaging is the default value, AMQP is the preferred protocol. No matter which transport type you select (NetMessaging or AMQP), the communication occurs over the selected ConnectivityMode. For example, you can have AMQP occur over TCP or HTTP(S).