コード例 #1
0
 public string GetMachineScript(String instanceID)
 {
     try
     {
         return(factoryService.getMachineScript(sessionID, instanceID));
     }
     catch (EndpointNotFoundException)
     {
         ClientServerEvent(this, new ClientServerEventArgs());
     }
     catch (FaultException)
     {
         ClientServerEvent(this, new ClientServerEventArgs("Fehler auf Server"));
     }
     return("");
 }
コード例 #2
0
 public string getMachineScript(String machineID)
 {
     return(factoryService.getMachineScript(sessionID, machineID));
 }