Overrides the base class. Writes the specified start tag and associates it with the given namespace.
Namespace: Microsoft.IdentityModel.Protocols.XmlSignature
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As EnvelopedSignatureWriter
Dim prefix As String
Dim localName As String
Dim ns As String

instance.WriteStartElement(prefix, localName, ns)

Syntax

Visual Basic
Public Overrides Sub WriteStartElement ( _
		prefix As String, _
		localName As String, _
		ns As String _
)
C#
public override void WriteStartElement (
		string prefix,
		string localName,
		string ns
)
C++
public:
virtual void WriteStartElement (
		String^ prefix, 
		String^ localName, 
		String^ ns
) override
J#
public void WriteStartElement (
		String prefix, 
		String localName, 
		String ns
)
JScript
public override function WriteStartElement (
		prefix : String, 
		localName : String, 
		ns : String
)

Parameters

prefix

The namespace prefix of the element.

localName

The local name of the element.

ns

The namespace URI to associate with the element.

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 Server 2003, Windows Vista

Target Platforms

Windows Server 2008, Windows Vista, Not tested on Windows XP

See Also