HtmlKit.HtmlTokenizer.CreateAttribute C# (CSharp) Method

CreateAttribute() protected method

Create an attribute.
Creates an attribute.
protected CreateAttribute ( string name ) : HtmlAttribute
name string THe attribute name.
return HtmlAttribute
		protected virtual HtmlAttribute CreateAttribute (string name)
		{
			return new HtmlAttribute (name);
		}
HtmlTokenizer