ATMLModelLibrary.model.signal.basic.HighPass.LoadFromFile C# (CSharp) Method

LoadFromFile() public static method

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

Same methods

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