Writes an attribute as a xml attribute with the prefix 'xml:'.
Namespace: Microsoft.IdentityModel.Protocols.XmlSignature
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As DelegatingXmlDictionaryWriter
Dim localName As String
Dim value As String

instance.WriteXmlAttribute(localName, value)

Syntax

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

Parameters

localName

Localname of the attribute.

value

Attribute value.

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