Acme.Northwind.Install.XmlHelper.GetNodeXML C# (CSharp) Method

GetNodeXML() public static method

Gets the actual XML of a node
public static GetNodeXML ( this document, string xpath, string defaultValue ) : string
document this
xpath string
defaultValue string
return string
		public static string GetNodeXML(this XmlDocument document, string xpath, string defaultValue)
		{
			return GetNodeXML(document, xpath, defaultValue, false);
		}

Same methods

XmlHelper::GetNodeXML ( this document, string xpath, string defaultValue, bool useOuter ) : string