Acme.Northwind.Install.XmlHelper.UpdateElement C# (CSharp) Метод

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

public static UpdateElement ( this xmlDocument, string xpath, string newValue ) : void
xmlDocument this
xpath string
newValue string
Результат void
		public static void UpdateElement(this XmlDocument xmlDocument, string xpath, string newValue)
		{
			xmlDocument.SelectSingleNode(xpath).InnerText = newValue;
		}