ATMLModelLibrary.model.common.SoftwareInstance.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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