CSMSL.IO.MzML.InstrumentConfigurationListType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

InstrumentConfigurationListType::Deserialize ( string xml ) : InstrumentConfigurationListType
InstrumentConfigurationListType::Deserialize ( string xml, InstrumentConfigurationListType &obj ) : bool