Click or drag to resize

LogicalChannel Class

Logical communication channel used to multiplex a single ClientChannel.
Inheritance Hierarchy
SystemObject
  OBCOM.NetSwitchLib.ClientsLogicalChannel

Namespace:  OBCOM.NetSwitchLib.Clients
Assembly:  OBCOM.NetSwitchLib (in OBCOM.NetSwitchLib.dll) Version: 1.48.7760.35650 (1.48.7760.35650)
Syntax
public sealed class LogicalChannel : IDisposable

The LogicalChannel type exposes the following members.

Properties
  NameDescription
Public propertyName
Gets the name of this LogicalChannel.
Top
Methods
  NameDescription
Public methodDispose
Dispose managed and unmanaged objects.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodSendRequest(String, Object)
Sends a request message to a destination and then blocks forever waiting for the reply message.
Public methodSendRequest(String, Object, Int32)
Sends a request message to a destination and then blocks waiting for the reply message for at most timeout milliseconds.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
A LogicalChannel is designed to be used in multi-threaded environments (such as Application or Web servers), where a single physical channel (ClientChannel) is used to send service requests by different threads serving concurrent HTTP requests.
See Also