XmlSerializationWriter.WriteValue Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Instructs XmlNode to write the specified value.
Overloads
WriteValue(Byte[]) |
This API supports the product infrastructure and is not intended to be used directly from your code. Writes a base-64 byte array. |
WriteValue(String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Writes a specified string value. |
WriteValue(Byte[])
- Source:
- XmlSerializationWriter.cs
- Source:
- XmlSerializationWriter.cs
- Source:
- XmlSerializationWriter.cs
Writes a base-64 byte array.
This API supports the product infrastructure and is not intended to be used directly from your code.
protected:
void WriteValue(cli::array <System::Byte> ^ value);
protected void WriteValue (byte[]? value);
protected void WriteValue (byte[] value);
member this.WriteValue : byte[] -> unit
Protected Sub WriteValue (value As Byte())
Parameters
- value
- Byte[]
The byte array to write.
Remarks
The protected members of XmlSerializationWriter are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.
Applies to
WriteValue(String)
- Source:
- XmlSerializationWriter.cs
- Source:
- XmlSerializationWriter.cs
- Source:
- XmlSerializationWriter.cs
Writes a specified string value.
This API supports the product infrastructure and is not intended to be used directly from your code.
protected:
void WriteValue(System::String ^ value);
protected void WriteValue (string? value);
protected void WriteValue (string value);
member this.WriteValue : string -> unit
Protected Sub WriteValue (value As String)
Parameters
- value
- String
The value of the string to write.
Remarks
The protected members of XmlSerializationWriter are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.