Cronous Emulation Server Daemon

ClientManager.Item Property

Retrieves the Client associated to a connection.

[C#] In C#, this property is the indexer for the ClientManager class.

[Visual Basic]
Public Default Property ReadOnly Item( _ 
   ByVal cc As ClientConnection _ 
) As Client
[C#]
public Client this[
   ClientConnection cc
] { get; }
[C++]
public: __property Client* get_Item(
   ClientConnection* cc
);
[JScript]
returnValue = ClientManagerObject.Item( cc );
-or-
returnValue = ClientManagerObject( cc );

[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.

See Also

ClientManager Class | croemud.manager Namespace