Module
XojoCloud Namespace
Description
The XojoCloud Namespace contains classes and modules used by Xojo Cloud.
Notes
You must prefix usage of these members with the XojoCloud Namespace. For example, this code opens firewall port 587:
Var fwp As New XojoCloud.FirewallPort(587, XojoCloud.FirewallPort.Direction.Outgoing)
fwp.Open() // This call is synchronous
If fwp.isOpen() Then
// Do what you need to do
fwp.Close() // Optional, but if you will not using the port, we recommend it.
End If
Compatibility
All project types on all supported operating systems.