ATMLModelLibrary.model.equipment.Feature.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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