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

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

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

Same methods

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