XText 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 XText 类的新实例。
重载
XText(String) |
初始化 XText 类的新实例。 |
XText(XText) |
XText(String)
初始化 XText 类的新实例。
public:
XText(System::String ^ value);
public XText (string value);
new System.Xml.Linq.XText : string -> System.Xml.Linq.XText
Public Sub New (value As String)
参数
示例
以下示例创建一个包含文本节点的元素。
XElement root = new XElement("Root", "Some text");
Console.WriteLine(root);
Dim root As XElement = <Root>Some text</Root>
Console.WriteLine(root)
该示例产生下面的输出:
<Root>Some text</Root>
注解
通常不使用构造函数创建文本节点 XText 。 在构造文本 XElement时传递文本内容时,将自动创建文本节点。
另请参阅
适用于
XText(XText)
public:
XText(System::Xml::Linq::XText ^ other);
public XText (System.Xml.Linq.XText other);
new System.Xml.Linq.XText : System.Xml.Linq.XText -> System.Xml.Linq.XText
Public Sub New (other As XText)
参数
注解
此构造函数主要用于在内部生成 XML 树的深层副本。