AODL.Document.TextDocuments.DocumentManifest.LoadFromFile C# (CSharp) Method

LoadFromFile() public method

public LoadFromFile ( string file ) : void
file string
return void
		public void LoadFromFile(string file)
		{
			try
			{
				this.Manifest		= new XmlDocument();
				this.Manifest.Load(file);
			}
			catch(Exception)
			{
				this.DTDReplacer(file);
				this.LoadFromFile(file);
			}
		}