ATMLModelLibrary.model.equipment.TestStationDescriptionInstrument.SaveToFile C# (CSharp) Метод

SaveToFile() публичный Метод

Serializes current TestStationDescriptionInstrument object into file
public SaveToFile ( string fileName, Exception &exception ) : bool
fileName string full path of outupt xml file
exception System.Exception output Exception value if failed
Результат bool
        public virtual bool SaveToFile(string fileName, out Exception exception)
        {
            exception = null;
            try
            {
                SaveToFile(fileName);
                return true;
            }
            catch (Exception e)
            {
                exception = e;
                return false;
            }
        }
        

Same methods

TestStationDescriptionInstrument::SaveToFile ( string fileName ) : void