Exemplo n.º 1
0
 /// <summary>
 /// Deserializes workflow markup into an NominaReceptor object
 /// </summary>
 /// <param name="input">string workflow markup to deserialize</param>
 /// <param name="obj">Output NominaReceptor object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 public static bool Deserialize(string input, out NominaReceptor obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(NominaReceptor);
     try
     {
         obj = Deserialize(input);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Nomina class constructor
 /// </summary>
 public Nomina()
 {
     this._receptor = new NominaReceptor();
     this._version  = "1.2";
     init();
 }
Exemplo n.º 3
0
 public static bool LeerDesdeArchivo(string fileName, out NominaReceptor obj)
 {
     System.Exception exception = null;
     return(LeerDesdeArchivo(fileName, out obj, out exception));
 }
Exemplo n.º 4
0
 public static bool LeerDesdeArchivo(string fileName, out NominaReceptor obj, out System.Exception exception)
 {
     return(LeerDesdeArchivo(fileName, System.Text.Encoding.UTF8, out obj, out exception));
 }
Exemplo n.º 5
0
 /// <summary>
 /// Deserializes xml markup from file into an NominaReceptor object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output NominaReceptor object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 public static bool LeerDesdeArchivo(string fileName, System.Text.Encoding encoding, out NominaReceptor obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(NominaReceptor);
     try
     {
         obj = LeerDesdeArchivo(fileName, encoding);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
Exemplo n.º 6
0
 public static bool Deserialize(string input, out NominaReceptor obj)
 {
     System.Exception exception = null;
     return(Deserialize(input, out obj, out exception));
 }