SPContentType.ParentList property
Obtém um objeto SPList que representa a lista no qual este objeto SPContentType reside.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaração
Public ReadOnly Property ParentList As SPList
Get
'Uso
Dim instance As SPContentType
Dim value As SPList
value = instance.ParentList
public SPList ParentList { get; }
Property value
Type: Microsoft.SharePoint.SPList
A lista em que reside este tipo de conteúdo.
Comentários
O valor dessa propriedade é a null reference (Nothing in Visual Basic) para um tipo de conteúdo de site. Para um tipo de conteúdo de lista, o valor é um objeto SPList que representa uma lista ou biblioteca de documentos à qual foi adicionado o tipo de conteúdo. Para obter mais informações, consulte Site and List Content Types.
Examples
O exemplo a seguir consiste em um método, DeleteListContentType. Como seu nome indica, o objetivo do método é excluir um tipo de conteúdo de uma lista. Ele aceita um objeto SPContentType como seu único argumento. Antes de prosseguir com a tarefa, o método verifica o valor da propriedade ParentList para verificar se o objeto que foi passado como um argumento está incluído no conjunto de tipo de conteúdo da lista. Se a propriedade retorna um valor de a null reference (Nothing in Visual Basic) , o tipo de conteúdo não pertence à lista, e o método retorna. Se a propriedade retorna um objeto SPList , o método utiliza o objeto para concluir sua tarefa.
Function DeleteListContentType(ByRef ct As SPContentType) As Boolean
' Make sure we have a content type.
If ct Is Nothing Then
Throw New ArgumentException("Content type is null.")
End If
' Make sure we have a list content type.
If ct.ParentList Is Nothing Then
Return False
End If
' Delete list items of this content type.
DeleteListItems(ct.ParentList, ct.Id)
' Check for read-only and sealed.
If ct.ReadOnly Then
ct.ReadOnly = False
End If
If ct.Sealed Then
ct.Sealed = False
End If
' Delete it.
ct.Delete()
Return True
End Function
Sub DeleteListItems(ByRef list As SPList, ByVal id As SPContentTypeId)
Dim items As SPListItemCollection = list.Items
Dim count As Integer = items.Count 'Count will change
Dim i As Integer
For i = count -1 To 0 Step i - 1
Dim item As SPListItem = items(i)
If item.ContentType.Id = id Then
item.Delete()
End If
Next
list.Update()
End Sub
static bool DeleteListContentType(SPContentType ct)
{
// Make sure we have a content type.
if (ct == null)
throw new ArgumentException("Content type is null.");
// Make sure we have a list content type
if (ct.ParentList == null)
return false;
// Delete list items of this content type.
DeleteListItems(ct.ParentList, ct.Id);
// Check for read-only and sealed.
if (ct.ReadOnly)
ct.ReadOnly = false;
if (ct.Sealed)
ct.Sealed = false;
// Delete it.
ct.Delete();
return true;
}
static void DeleteListItems(SPList list, SPContentTypeId id)
{
SPListItemCollection items = list.Items;
int count = items.Count; //Count will change
for (int i = count -1; i >= 0; i--)
{
SPListItem item = items[i];
if (item.ContentType.Id == id)
item.Delete();
}
list.Update();
}
Ver também
Referência
Microsoft.SharePoint namespace