CCNet.Build.Confluence.PageDocumentExtensions.XAttribute C# (CSharp) Méthode

XAttribute() public static méthode

Finds attribute by name, using internal namespace prefixes.
public static XAttribute ( this element, string name ) : System.Xml.Linq.XAttribute
element this
name string
Résultat System.Xml.Linq.XAttribute
		public static XAttribute XAttribute(this XElement element, string name)
		{
			return element.Attribute(PageDocument.Nm(name));
		}