Exemple #1
0
 /// <summary>
 /// Deserializes workflow markup into an Complemento_SPEI object
 /// </summary>
 /// <param name="input">string workflow markup to deserialize</param>
 /// <param name="obj">Output Complemento_SPEI 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 Complemento_SPEI obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(Complemento_SPEI);
     try
     {
         obj = Deserialize(input);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
Exemple #2
0
        public static bool LeerXML(String XML, out Complemento_SPEI obj, out String Error)
        {
            Error = String.Empty;
            obj   = null;
            bool Resultado = false;

            try
            {
                obj       = Deserialize(XML);
                Resultado = true;
            }
            catch (Exception ex)
            {
                Error = ex.Message;
            }

            return(Resultado);
        }
Exemple #3
0
 public static bool LeerDesdeArchivo(string fileName, out Complemento_SPEI obj)
 {
     System.Exception exception = null;
     return(LeerDesdeArchivo(fileName, out obj, out exception));
 }
Exemple #4
0
 public static bool LeerDesdeArchivo(string fileName, out Complemento_SPEI obj, out System.Exception exception)
 {
     return(LeerDesdeArchivo(fileName, System.Text.Encoding.UTF8, out obj, out exception));
 }
Exemple #5
0
 /// <summary>
 /// Deserializes xml markup from file into an Complemento_SPEI object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output Complemento_SPEI 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 Complemento_SPEI obj, out System.Exception exception)
 {
     exception = null;
     obj       = default(Complemento_SPEI);
     try
     {
         obj = LeerDesdeArchivo(fileName, encoding);
         return(true);
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return(false);
     }
 }
Exemple #6
0
 public static bool Deserialize(string input, out Complemento_SPEI obj)
 {
     System.Exception exception = null;
     return(Deserialize(input, out obj, out exception));
 }