MonoDevelop.Projects.Formats.MSBuild.MSBuildProject.GetProjectExtensions C# (CSharp) Method

GetProjectExtensions() public method

public GetProjectExtensions ( string section ) : string
section string
return string
		public string GetProjectExtensions (string section)
		{
			XmlElement elem = doc.DocumentElement.SelectSingleNode ("tns:ProjectExtensions/tns:" + section, XmlNamespaceManager) as XmlElement;
			if (elem != null)
				return elem.InnerXml;
			else
				return string.Empty;
		}