CCNet.Build.Confluence.PageDocument.Attribute C# (CSharp) Method

Attribute() private static method

Builds new attribute, using internal namespace prefixes.
private static Attribute ( string name, object value ) : System.Xml.Linq.XAttribute
name string
value object
return System.Xml.Linq.XAttribute
		private static XAttribute Attribute(string name, object value)
		{
			return new XAttribute(Nm(name), value);
		}