SecurityElement.Text 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 XML 元素中的文本。
public:
property System::String ^ Text { System::String ^ get(); void set(System::String ^ value); };
public string Text { get; set; }
public string? Text { get; set; }
member this.Text : string with get, set
Public Property Text As String
属性值
XML 元素中文本的值。
例外
文本在 XML 中无效。
示例
以下代码演示如何使用 Text 属性获取 XML 元素的文本。 此代码示例是为 SecurityElement 类提供的一个更大示例的一部分。
String^ xmlTreeDescription = xmlElement->Text;
string xmlTreeDescription = xmlElement.Text;
Dim xmlTreeDescription As String = xmlElement.Text
注解
文本不应包含 XML 特殊字符。 使用 Escape 从字符串中删除无效字符。
SecurityElement如果 同时Text包含 和 Children,Text则首先显示 。