HtmlWriter.WriteStartTag Method (String)
The WriteStartTag method writes a start tag to the output.
Namespace: Microsoft.Exchange.Data.TextConverters
Assembly: Microsoft.Exchange.Data.Common (in microsoft.exchange.data.common.dll)
Syntax
'Declaration
Public Sub WriteStartTag ( _
name As String _
)
public void WriteStartTag (
string name
)
public:
void WriteStartTag (
String^ name
)
public void WriteStartTag (
String name
)
public function WriteStartTag (
name : String
)
Parameters
- name
The start tag to write.
Remarks
The start tag written by WriteStartTag remains open until text or the next tag is written. You can therefore write attributes to them until you write either text or the next tag.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows XP Professional with Service Pack 2 (SP2), Windows Server 2003,
Target Platforms
Windows Server 2003
See Also