SecurityElement.SearchForTextOfTag(String) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
タグ名を指定して子要素を検索し、格納されているテキストを返します。
public:
System::String ^ SearchForTextOfTag(System::String ^ tag);
public string? SearchForTextOfTag (string tag);
public string SearchForTextOfTag (string tag);
member this.SearchForTextOfTag : string -> string
Public Function SearchForTextOfTag (tag As String) As String
パラメーター
- tag
- String
子要素で検索するタグ。
戻り値
指定したタグ値を持つ最初の子要素のテキストの内容。
例外
tag
が null
です。
例
次のコードは、 メソッドを SearchForTextOfTag 使用して、タグ名で子を検索し、含まれているテキストを返す方法を示しています。 このコード例は、SecurityElement クラスのために提供されている大規模な例の一部です。
String^ storedDestroyTime = localXmlElement->SearchForTextOfTag( L"destroytime" );
string storedDestroyTime =
localXmlElement.SearchForTextOfTag("destroytime");
Dim storedDestroyTime As String = localXmlElement.SearchForTextOfTag("destroytime")
注釈
このメソッドは、次のメソッドと同じです。
String^ SearchForTextOfTag(String^ tag)
{
SecurityElement^ element = this->SearchForChildByTag(tag);
return element->Text;
}
string SearchForTextOfTag(string tag)
{
SecurityElement element = this.SearchForChildByTag(tag);
return element.Text;
}
Public Function SearchForTextOfTag(ByVal tag As String) As String
Dim element As SecurityElement = MyClass.SearchForChildByTag(tag)
Return element.Text
End Function
次のように XML を指定すると、 SearchForTextOfTag("second")
"text2" が返されます。
<thetag A="123" B="456" C="789"> <first>text1</first>
<second>text2</second></thetag>
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET