共用方式為


XObject.Parent 屬性

定義

取得這個 XElementXObject

public:
 property System::Xml::Linq::XElement ^ Parent { System::Xml::Linq::XElement ^ get(); };
public System.Xml.Linq.XElement Parent { get; }
public System.Xml.Linq.XElement? Parent { get; }
member this.Parent : System.Xml.Linq.XElement
Public ReadOnly Property Parent As XElement

屬性值

這個 XElement 的父 XObject

範例

下列範例會使用這個方法。

XDocument doc = new XDocument(
    new XComment("A comment in the document."),
    new XElement("Root",
        new XElement("Child", "content")
    )
);
XElement child = doc.Descendants("Child").First();
XElement root = child.Parent;
Console.WriteLine(root.Name);
Dim doc As XDocument = _
    <?xml version="1.0"?>
    <!--A comment in the document.-->
    <Root>
        <Child>content</Child>
    </Root>
Dim child As XElement = doc.Descendants("Child").First()
Dim root As XElement = child.Parent
Console.WriteLine(root.Name)

這個範例會產生下列輸出:

Root

備註

XObject如果這個 沒有父元素,這個屬性會傳 null 回 。

注意

這個屬性會傳回父元素,而 做為 的 XDocument 子節點沒有父元素,此屬性會 null 為其傳回。

適用於

另請參閱