| SAapi Object : GetProject Method | 
| Visual Basic | 
|---|
| Public Function GetProject( _ ByVal DomainName As String, _ ByVal ProjectName As String _ ) As String | 
On success, returns an XML string containing the project properties.
The properties of the XML return string:
Private Function GetProject(sDomainName As String, sProjectName As String) As String 'The following Visual Basic example gets the properties ' of a project. Dim sReply As String On Error GoTo err sReply = m_SAClient.GetProject _ (sDomainName, sProjectName) GetProject = sReply Exit Function err: MsgBox "Program failed:" + err.Description End Function