Writes the start of an attribute with the specified local name and namespace URI.
Namespace: Microsoft.IdentityModel.Protocols.XmlSignature
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

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

instance.WriteStartAttribute(prefix, localName, ns)

Syntax

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

Parameters

prefix

The namespace prefix of the attribute.

localName

The local name of the attribute.

ns

The namespace URI for the attribute.

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