MzIdentML.ProteinDetectionListType.Deserialize C# (CSharp) Method

Deserialize() public static method

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

Same methods

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