ATMLModelLibrary.model.common.Document.LoadFromFile C# (CSharp) Method

LoadFromFile() public static method

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

Same methods

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