示例#1
0
 /// <summary>
 ///
 /// </summary>
 /// <returns></returns>
 /*CR*/ public string[][] GetCustomNames()
 {
     string[][] customNames = null;
     try
     {
         if (IsConnectionEnabled)
         {
             customNames = myXmlRpcProxy.GetCustomNames();
         }
     }
     catch (Exception ex)
     {
         // Log the details of the exception
         LogException(ex, "GetCustomNames");
     }
     return(customNames);
 }