ATMLModelLibrary.model.signal.TSFTypeModelStandard.LoadFromFile C# (CSharp) Method

LoadFromFile() public static method

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

Same methods

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