Represents the network address of a node on the network.
Represents the network number of a node on the network.
object.Net
String.
Read-only.
This example shows the Net property in its typical context.
’Display the address of all file server objects in the Bindery.
set bindery = CreateObject ("ucx:Bindery")
set entries = bindery.Seaerch ("*.*",NET_FILE_SERVER)
For each Entry in Entries
Print("Network Number: " &entry.address.net & "Node Address: " &entry.address.node & "Socket Number: "&entry.address.socket)
next
Represents the node address.
object.Node
String.
Read-only.
This example shows the Node property in its typical context.
’Display the address of all file server objects in the Bindery.
set bindery = CreateObject ("ucx:Bindery")
set entries = bindery.Seaerch ("*.*",NET_FILE_SERVER)
For each Entry in Entries
Print("Network Number: " &entry.address.net & "Node Address: " &entry.address.node & "Socket Number: "&entry.address.socket)
next
Represents the socket number.
object.Socket
String.
Read-only.
This example shows the Socket property in its typical context.
’Display the address of all file server objects in the Bindery.
set bindery = CreateObject ("ucx:Bindery")
set entries = bindery.Seaerch ("*.*",NET_FILE_SERVER)
For each Entry in Entries
Print("Network Number: " &entry.address.net & "Node Address: " &entry.address.node & "Socket Number: "&entry.address.socket)
next