public PhotoInfo GetPhoto(int photoID)
 {
     assertConnected();
     try
     {
         return(wsClient.GetPhoto(accessToken(), photoID));
     }
     catch (Exception ex)
     {
         throw TranslateException(ex);
     }
 }