public NoteTypeInfo[] GetAllNoteTypes()
 {
     assertConnected();
     try
     {
         string noteTypeListXml = wsClient.GetAllNoteTypes(accessToken());
         return(NoteTypeInfo.ParseNoteTypesXml(noteTypeListXml));
     }
     catch (Exception ex)
     {
         throw TranslateException(ex);
     }
 }