CSMSL.IO.MzML.InstrumentConfigurationListType.LoadFromFile C# (CSharp) Метод

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

Deserializes xml markup from file into an InstrumentConfigurationListType object
public static LoadFromFile ( string fileName, InstrumentConfigurationListType &obj, System &exception ) : bool
fileName string string xml file to load and deserialize
obj InstrumentConfigurationListType Output InstrumentConfigurationListType object
exception System output Exception value if deserialize failed
Результат bool
        public static bool LoadFromFile(string fileName, out InstrumentConfigurationListType obj, out System.Exception exception)
        {
            exception = null;
            obj = default(InstrumentConfigurationListType);
            try
            {
                obj = LoadFromFile(fileName);
                return true;
            }
            catch (System.Exception ex)
            {
                exception = ex;
                return false;
            }
        }

Same methods

InstrumentConfigurationListType::LoadFromFile ( string fileName ) : InstrumentConfigurationListType
InstrumentConfigurationListType::LoadFromFile ( string fileName, InstrumentConfigurationListType &obj ) : bool