HtmlKit.HtmlWriter.EncodeAttribute C# (CSharp) Method

EncodeAttribute() private method

private EncodeAttribute ( string name, char value, int startIndex, int count ) : void
name string
value char
startIndex int
count int
return void
		void EncodeAttribute (string name, char[] value, int startIndex, int count)
		{
			EncodeAttributeName (name);
			EncodeAttributeValue (value, startIndex, count);
		}

Same methods

HtmlWriter::EncodeAttribute ( string name, string value ) : void