isValidEsig() public méthode

public isValidEsig ( gov.va.medora.mdo.dao.AbstractConnection cxn, string esig ) : bool
cxn gov.va.medora.mdo.dao.AbstractConnection
esig string
Résultat bool
Exemple #1
0
 internal TextTO isValidEsig(AbstractConnection cxn, string esig)
 {
     TextTO result = new TextTO();
     if (esig == "")
     {
         result.fault = new FaultTO("Missing esig");
     }
     if (result.fault != null)
     {
         return result;
     }
     try
     {
         UserApi api = new UserApi();
         bool f = api.isValidEsig(cxn, esig);
         result = new TextTO((f ? "TRUE" : "FALSE"));
     }
     catch (Exception e)
     {
         result.fault = new FaultTO(e.Message);
     }
     return result;
 }