CCNet.Build.Confluence.PageDocument.Attribute C# (CSharp) Метод

Attribute() приватный статический Метод

Builds new attribute, using internal namespace prefixes.
private static Attribute ( string name, object value ) : System.Xml.Linq.XAttribute
name string
value object
Результат System.Xml.Linq.XAttribute
		private static XAttribute Attribute(string name, object value)
		{
			return new XAttribute(Nm(name), value);
		}