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;
		}