IZeroConfServerChannel
Overview
The IZeroConfServerChannel interface represents the information about specified server channel: such as port that the server will listening on.
This interface is used by ZeroConfRegistration class, for obtaining various information about the server that need to be registered.
In most cases you don't need to use that interface directly.
Location
- Reference: RemObjects.SDK.dll
- Namespace: RemObjects.SDK.Server
- Ancestry: IServerChannel | IZeroConfServerChannel
Active (declared in IServerChannel)
Represents the current state of the server channel: a true value means that the server channel is in active state, a false value means that it is inactive.
property Active: Boolean read;
Boolean Active { get; }
var Active: Boolean { get{} }
ReadOnly Property Active() As Boolean
AfterClose (declared in IServerChannel)
Represents the event that occurs after an application closes the server channel.
event AfterClose: EventHandler
delegate EventHandler AfterClose()
__event EventHandler: AfterClose!
Event AfterClose As EventHandler
AfterOpen (declared in IServerChannel)
Represents the event that occurs after an application completes opening the server channel.
event AfterOpen: EventHandler
delegate EventHandler AfterOpen()
__event EventHandler: AfterOpen!
Event AfterOpen As EventHandler
BeforeClose (declared in IServerChannel)
Represents the event that occurs immediately before the server channel closes.
event BeforeClose: EventHandler
delegate EventHandler BeforeClose()
__event EventHandler: BeforeClose!
Event BeforeClose As EventHandler
BeforeOpen (declared in IServerChannel)
Represents the event that occurs before an application executes opening the server channel.
event BeforeOpen: EventHandler
delegate EventHandler BeforeOpen()
__event EventHandler: BeforeOpen!
Event BeforeOpen As EventHandler
ChannelType
property ChannelType: String read;
String ChannelType { get; }
var ChannelType: String { get{} }
ReadOnly Property ChannelType() As String
Close (declared in IServerChannel)
method Close
void Close()
func Close()
Sub Close()
CustomParameters
property CustomParameters: IDictionary<String, String> read;
IDictionary<String, String> CustomParameters { get; }
var CustomParameters: IDictionary<String, String> { get{} }
ReadOnly Property CustomParameters() As IDictionary<String, String>
IsTlsEnabled
Specifies if TLS protocol is used
property IsTlsEnabled: Boolean read;
Boolean IsTlsEnabled { get; }
var IsTlsEnabled: Boolean { get{} }
ReadOnly Property IsTlsEnabled() As Boolean
Messages
property Messages: IList<String> read;
IList<String> Messages { get; }
var Messages: IList<String> { get{} }
ReadOnly Property Messages() As IList<String>
Open (declared in IServerChannel)
method Open
void Open()
func Open()
Sub Open()
Port
Holds the port that the server is listening on.
property Port: Int32 read;
Int32 Port { get; }
var Port: Int32 { get{} }
ReadOnly Property Port() As Int32
Active (declared in IServerChannel)
Represents the current state of the server channel: a true value means that the server channel is in active state, a false value means that it is inactive.
property Active: Boolean read;
Boolean Active { get; }
var Active: Boolean { get{} }
ReadOnly Property Active() As Boolean
ChannelType
property ChannelType: String read;
String ChannelType { get; }
var ChannelType: String { get{} }
ReadOnly Property ChannelType() As String
CustomParameters
property CustomParameters: IDictionary<String, String> read;
IDictionary<String, String> CustomParameters { get; }
var CustomParameters: IDictionary<String, String> { get{} }
ReadOnly Property CustomParameters() As IDictionary<String, String>
IsTlsEnabled
Specifies if TLS protocol is used
property IsTlsEnabled: Boolean read;
Boolean IsTlsEnabled { get; }
var IsTlsEnabled: Boolean { get{} }
ReadOnly Property IsTlsEnabled() As Boolean
Messages
property Messages: IList<String> read;
IList<String> Messages { get; }
var Messages: IList<String> { get{} }
ReadOnly Property Messages() As IList<String>
Port
Holds the port that the server is listening on.
property Port: Int32 read;
Int32 Port { get; }
var Port: Int32 { get{} }
ReadOnly Property Port() As Int32
Close (declared in IServerChannel)
method Close
void Close()
func Close()
Sub Close()
Open (declared in IServerChannel)
method Open
void Open()
func Open()
Sub Open()
AfterClose (declared in IServerChannel)
Represents the event that occurs after an application closes the server channel.
event AfterClose: EventHandler
delegate EventHandler AfterClose()
__event EventHandler: AfterClose!
Event AfterClose As EventHandler
AfterOpen (declared in IServerChannel)
Represents the event that occurs after an application completes opening the server channel.
event AfterOpen: EventHandler
delegate EventHandler AfterOpen()
__event EventHandler: AfterOpen!
Event AfterOpen As EventHandler
BeforeClose (declared in IServerChannel)
Represents the event that occurs immediately before the server channel closes.
event BeforeClose: EventHandler
delegate EventHandler BeforeClose()
__event EventHandler: BeforeClose!
Event BeforeClose As EventHandler
BeforeOpen (declared in IServerChannel)
Represents the event that occurs before an application executes opening the server channel.
event BeforeOpen: EventHandler
delegate EventHandler BeforeOpen()
__event EventHandler: BeforeOpen!
Event BeforeOpen As EventHandler
- Channels
- Server Channels
-
IZeroConfServerChannel Interface
- .NET
- Delphi