ATMLModelLibrary.model.equipment.EIA232.Deserialize C# (CSharp) Метод

Deserialize() публичный статический Метод

Deserializes workflow markup into an EIA232 object
public static Deserialize ( string input, EIA232 &obj, Exception &exception ) : bool
input string string workflow markup to deserialize
obj EIA232 Output EIA232 object
exception System.Exception output Exception value if deserialize failed
Результат bool
        public static bool Deserialize(string input, out EIA232 obj, out Exception exception)
        {
            exception = null;
            obj = default(EIA232);
            try
            {
                obj = Deserialize(input);
                return true;
            }
            catch (Exception ex)
            {
                exception = ex;
                return false;
            }
        }

Same methods

EIA232::Deserialize ( Stream s ) : EIA232
EIA232::Deserialize ( string input ) : EIA232
EIA232::Deserialize ( string input, EIA232 &obj ) : bool