Bamboo.Prevalence.VersionMigration.MigrationPlan.Load C# (CSharp) Метод

Load() публичный статический Метод

public static Load ( string filename ) : MigrationPlan
filename string
Результат MigrationPlan
		public static MigrationPlan Load(string filename)
		{	
			XmlDocument document = new XmlDocument();
			document.Load(filename);			
			return new MigrationPlan(document.DocumentElement);
		}

Same methods

MigrationPlan::Load ( XmlElement planElement ) : void

Usage Example

Пример #1
0
 private void LoadMigrationPlan()
 {
     _plan = MigrationPlan.Load(_project.MigrationPlan);
 }