SAapi Object : GetAllDomains Method |
Visual Basic |
---|
Public Function GetAllDomains() As String |
On success, returns an XML string containing the domain properties.
If a domain includes projects, the following project properties are displayed:
Private Sub GetAllDomains() 'The following Visual Basic example gets all the domains ' and their properties. Dim sReply As String On Error GoTo err sReply = m_SAClient.GetAllDomains MsgBox sReply Exit Sub err: MsgBox "Program failed:" + err.Description End Sub