ETransportDirection

The ETransportDirection enumeration describes the transport direction of messages. The enum distinguishes between Request, Response, and Both, i.e., for the outward and return journeys.

public enum ETransportDirection
{
    /**
    * Direction: From sender to receiver.
    */
    REQUEST,
    
    /**
    * Direction: From receiver to sender.
    */
    RESPONSE,
    
    /**
    * Direction: BOTH directions.
    */
    BOTH
}

See also