SPContentTypeId.Parent 属性

获取当前的内容类型 ID 是直接的后代内容类型标识符 (ID)。

命名空间:  Microsoft.SharePoint
程序集:  Microsoft.SharePoint(位于 Microsoft.SharePoint.dll 中)

语法

声明
Public ReadOnly Property Parent As SPContentTypeId
    Get
用法
Dim instance As SPContentTypeId
Dim value As SPContentTypeId

value = instance.Parent
public SPContentTypeId Parent { get; }

属性值

类型:Microsoft.SharePoint.SPContentTypeId
一个表示父 ID 的内容类型 ID

备注

内容类型 Id 旨在成为递归。内容类型的 ID 封装继承关系的该内容类型或内容类型继承父内容类型的行。每个内容类型 ID 包含父内容类型,这又包含了该内容类型的父级,等的 ID 的 ID、 最终回和所有内容类型 Id 的根目录,包括System内容类型 id。通过分析的内容类型 ID,您可以确定相关的内容类型的衍生序列和如何两个内容类型。

For more information, see Content Type IDs.

备注

System内容类型 ID 作为其自身的父级。它也是Empty内容类型 ID 的父对象

示例

下面的示例演示跟踪名为Document内置内容类型 ID 的 parentage 一个控制台应用程序。

Imports System
Imports Microsoft.SharePoint

Module ConsoleApp

    Sub Main()

        Dim child As SPContentTypeId = SPBuiltInContentTypeId.Document
        Dim parent As SPContentTypeId = child.Parent
        Dim grandparent As SPContentTypeId = parent.Parent

        Console.WriteLine(grandparent.ToString())
        Console.WriteLine(parent.ToString())
        Console.WriteLine(child.ToString())

        Console.Write(vbCrLf & "Press ENTER to continue....")
        Console.Read()
    End Sub
End Module
using System;
using Microsoft.SharePoint;

namespace ConsoleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            SPContentTypeId child = SPBuiltInContentTypeId.Document;
            SPContentTypeId parent = child.Parent;
            SPContentTypeId grandparent = parent.Parent;

            Console.WriteLine(grandparent.ToString());
            Console.WriteLine(parent.ToString());
            Console.WriteLine(child.ToString());

            Console.Write("\nPress ENTER to continue....");
            Console.Read();
        }
    }
}

应用程序将以下输出显示到控制台上。

0x
0x01
0x0101

Press ENTER to continue...

另请参阅

引用

SPContentTypeId 结构

SPContentTypeId 成员

Microsoft.SharePoint 命名空间

IsParentOf(SPContentTypeId)

SPBuiltInContentTypeId

其他资源

Content Type IDs

Introduction to Content Types

Site and List Content Types

Base Content Type Hierarchy