次の方法で共有


DiscoveryDocument.CanRead(XmlReader) メソッド

定義

渡された XmlReaderDiscoveryDocument に逆シリアル化できるかどうかを示す値を返します。

public:
 static bool CanRead(System::Xml::XmlReader ^ xmlReader);
public static bool CanRead (System.Xml.XmlReader xmlReader);
static member CanRead : System.Xml.XmlReader -> bool
Public Shared Function CanRead (xmlReader As XmlReader) As Boolean

パラメーター

xmlReader
XmlReader

XmlReader に逆シリアル化できるかどうかのテストの対象となる DiscoveryDocument

戻り値

XmlReaderDiscoveryDocument に逆シリアル化できる場合は true。それ以外の場合は false

次のコード例では、 プロパティtrueが の場合、探索ドキュメントの内容をCanRead読み取ります。

// Check whether the given XmlTextReader is readable.
if ( DiscoveryDocument::CanRead( myXmlTextReader ) == true )
      
// Read the given XmlTextReader.
myDiscoveryDocument = DiscoveryDocument::Read( myXmlTextReader );
else
      Console::WriteLine( "The supplied file is not readable" );
// Check whether the given XmlTextReader is readable.
if( DiscoveryDocument.CanRead( myXmlTextReader ) == true )
{
   // Read the given XmlTextReader.
   myDiscoveryDocument = DiscoveryDocument.Read( myXmlTextReader );
}
else
{
   Console.WriteLine( "The supplied file is not readable" );
}
' Check whether the given XmlTextReader is readable.
If DiscoveryDocument.CanRead(myXmlTextReader) = True Then
   ' Read the given XmlTextReader.
   myDiscoveryDocument = DiscoveryDocument.Read(myXmlTextReader)
Else
   Console.WriteLine("The supplied file is not readable")
End If

適用対象

こちらもご覧ください