XmlReader.CanReadBinaryContent Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets a value indicating whether the XmlReader implements the binary content read methods.
Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Syntax
'Declaration
Public Overridable ReadOnly Property CanReadBinaryContent As Boolean
public virtual bool CanReadBinaryContent { get; }
Property Value
Type: System.Boolean
true if the binary content read methods are implemented; otherwise false.
Remarks
The binary content read methods include the ReadContentAsBase64, ReadContentAsBinHex, ReadElementContentAsBase64, and ReadElementContentAsBinHex methods. If this property returns false a NotSupportedException is returned when any of the binary read methods is called.
All Microsoft .NET Framework implementations of the XmlReader class return true for this property.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also