Interface IProtocol
Object describing various overarching parameters associated with a particular AMQP protocol variant.
public interface IProtocol
Properties
ApiName
Retrieve the protocol's API name, used for printing, configuration properties, IDE integration, Protocols.cs etc.
string ApiName { get; }
Property Value
DefaultPort
Retrieve the protocol's default TCP port.
int DefaultPort { get; }
Property Value
MajorVersion
Retrieve the protocol's major version number.
int MajorVersion { get; }
Property Value
MinorVersion
Retrieve the protocol's minor version number.
int MinorVersion { get; }
Property Value
Revision
Retrieve the protocol's revision (if specified).
int Revision { get; }