Represents the network address of a node on the network.
Represents the network address of a node on the network.
object.Net
String.
Read-only.
This example shows the Net property in its typical context.
’Find the 10th connection and list the connection information.
set srv = createobject ("ucx:Server")
set conns = srv.Clients
set Connection=conns.Element(10)
print (connection.address.net) &' is the network number'
Represents the node address.
object.Node
String.
Read-only.
This property returns the actual address of the client. Returns 1 for a server.
This example shows the Node property in its typical context.
’Find the 10th connection and list the connection information.
set srv = createobject ("ucx:Server")
set conns = srv.Clients
set Connection=conns.Element(10)
print (connection.address.node) &' is the node address'
Represents the socket number.
object.Socket
String.
Read-only.
This example shows the Socket property in its typical context.
’Find the 10th connection and lsit the connection information.
set srv = createobject ("ucx:Server")
set conns = srv.clients
set Connection=conns.Element(10)
print (connection.address.socket) &' is the socket number'