HtmlKit.HtmlTokenizer.CreateAttribute C# (CSharp) Méthode

CreateAttribute() protected méthode

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