XmlSerializationReader.ReadString Method (String, Boolean)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Returns the result of a call to the ReadString method of the XmlReader class, trimmed of white space if required, and appended to the input value.
Namespace: System.Xml.Serialization
Assembly: System.Xml.Serialization (in System.Xml.Serialization.dll)
Syntax
'Declaration
Protected Function ReadString ( _
value As String, _
trim As Boolean _
) As String
protected string ReadString(
string value,
bool trim
)
Parameters
- value
Type: System.String
A string that is appended to.
- trim
Type: System.Boolean
true if the result of the read operation should be trimmed; otherwise, false.
Return Value
Type: System.String
The result of the read operation appended to the input value.
Version Information
Silverlight
Supported in: 5, 4, 3
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also