wodPop3Server ActiveX Control - Users Property
      
 

Description

Holds reference to collection of currently connected users.


Property type

A Pop3Users object.  


Syntax

object.Users



The Users Property syntax has these parts:

Part Description
object An expression evaluating to an object of type wodPop3Server.

Remarks

If you want to access information about users currently connected to your POP3 server, you will use this property. In 'technical' words, it will give you reference to Pop3Users object, but this means much more.

First, you will be able to determine total number of connected users using Count property.

Second, you will be able to access information about specific user using his index and Item property. For instance, you can see hostname of computer from where first user connected, you can do it like this:

Debug.Print Pop3.Users.Item(0).HostName
 

or shorter

Debug.Print Pop3.Users(0).HostName
 

This is readonly property, and it has only members for accessing existing objects (users), not adding new ones. This is so that wodPop3Server adds new users as they arrive (and removes them).