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

Deserialize() public static method

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

Same methods

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