Click or drag to resize
MimeKit

HtmlWriterWriteStartTag(String) Method

Write a start tag.

Namespace: MimeKit.Text
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public void WriteStartTag(
	string name
)

Parameters

name  String
The name of the HTML tag.
Exceptions
ExceptionCondition
ArgumentNullExceptionname is null.
ArgumentExceptionname is not a valid HTML tag.
ObjectDisposedException The HtmlWriter has been disposed.
Remarks
Writes a start tag.
See Also