This topic has not yet been rated - Rate this topic

XmlSerializationWriter.WriteNullableStringEncodedRaw Method (String, String, Byte[], XmlQualifiedName)

This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Writes a byte array as the body of an XML element. XmlWriter inserts an xsi:nil='true' attribute if the string's value is a null reference (Nothing in Visual Basic).

Namespace: System.Xml.Serialization
Assembly: System.Xml (in system.xml.dll)

protected void WriteNullableStringEncodedRaw (
	string name,
	string ns,
	byte[] value,
	XmlQualifiedName xsiType
)
protected void WriteNullableStringEncodedRaw (
	String name, 
	String ns, 
	byte[] value, 
	XmlQualifiedName xsiType
)
protected function WriteNullableStringEncodedRaw (
	name : String, 
	ns : String, 
	value : byte[], 
	xsiType : XmlQualifiedName
)

Parameters

name

The local name of the XML element to write.

ns

The namespace of the XML element to write.

value

The byte array to write in the body of the XML element.

xsiType

The name of the XML Schema data type to be written to the xsi:type attribute.

The protected members of XmlSerializationWriter are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

When set to true, the nil attribute from the XML Schema instance namespace (abbreviated xsi) indicates a null value.

The WriteNullableStringEncodedRaw method is called only when writing SOAP-encoded XML, as described in Section 5 of the SOAP 1.1 specification.

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0, 1.1, 1.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.