Inherited Variables
Inherited Constants
Inherited Methods
Class: VObject
- VObject::__construct()
- Class Constructor
- VObject::bind()
- Bind values to this object
- VObject::delete()
- Delete Object
- VObject::get()
- Get value
- VObject::getAll()
- Get all object values
- VObject::getError()
- Get error message
- VObject::getErrors()
- Get errors
- VObject::getMethods()
- Get object methods
- VObject::getProperties()
- Get object properties
- VObject::save()
- Save Object
- VObject::set()
- Set a value
- VObject::setError()
- Set error value
- VObject::setProperties()
- Set property values
- VObject::setProperty()
- Set property value
- VObject::toString()
- Convert object to string
- VObject::__destruct()
- Class Destructor
- VObject::__toString()
- Return object as a string
Class Details
Virtual Web Platform - Network Support
This class provides access to networking features.
Registry keys can be used to add support
for new clients and protocols.
Client Key: NETWORK\Clients\[client_id]
Protocol Key: NETWORK\Protocols\[protocol_id]
The registry key should have a value named 'location'
which is the file which will be loaded
when the client or protocol is requested.
Required Headers:
VWP::RequireLibrary('vwp.net');
Usage:
VNet::RequireClient(string $client_id);
VNet::RequireProtool(string $client_id);Tags:
- author - Ralph Ritoch <rritoch@gmail.com>
- copyright - (c) Ralph Ritoch - All Rights Reserved
- link - VNetPublishing.Com
- license - VNETLPL Limited Public License
[ Top ]
Class Variables
Class Methods
static RequireClient
static boolean|object True RequireClient(
string
$client_id)
[line 96]
Load a networking client interface
Tags:
- return - on success, error or warning otherwise
- access - public
Parameters:
- string $client_id - Client ID
[ Top ]
static RequireProtocol
static boolean|object True RequireProtocol(
string
$protocol_id)
[line 187]
Load a networking protocol interface
Tags:
- return - on success, error or warning otherwise
- access - public
Parameters:
- string $protocol_id - Protocol ID
[ Top ]