ServerChannelInfo

Overview

The ServerChannelInfo is a base class for holding server channel info. This particular implementation is responsible for holding ServerChannel though it is extended in inherited classes.

For internal use only.

Location


Properties


ServerChannel

Returns the server channel instance provided in constructor.

 

property ServerChannel: ServerChannel read;

 

ServerChannel ServerChannel { get; }

 

ReadOnly Property ServerChannel() As ServerChannel

Instance Methods


constructor  protected

Creates an instance of an object with the given ServerChannel.

 

constructor(serverChannel: ServerChannel)

 

ServerChannelInfo(ServerChannel serverChannel)

 

Sub New(serverChannel As ServerChannel)

Parameters:

  • serverChannel: A given server channel.