ATMLModelLibrary.model.signal.VOR.Deserialize C# (CSharp) Méthode

Deserialize() public static méthode

Deserializes workflow markup into an VOR object
public static Deserialize ( string input, VOR &obj, System &exception ) : bool
input string string workflow markup to deserialize
obj VOR Output VOR object
exception System output Exception value if deserialize failed
Résultat bool
        public static bool Deserialize(string input, out VOR obj, out System.Exception exception)
        {
            exception = null;
            obj = default(VOR);
            try
            {
                obj = Deserialize(input);
                return true;
            }
            catch (System.Exception ex)
            {
                exception = ex;
                return false;
            }
        }
        

Same methods

VOR::Deserialize ( System s ) : VOR
VOR::Deserialize ( string input ) : VOR
VOR::Deserialize ( string input, VOR &obj ) : bool