ContentTypeCollection.AddExistingContentType method
Adds the specified content type to the collection.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client (in Microsoft.SharePoint.Client.dll)
Syntax
'Declaration
Public Function AddExistingContentType ( _
contentType As ContentType _
) As ContentType
'Usage
Dim instance As ContentTypeCollection
Dim contentType As ContentType
Dim returnValue As ContentType
returnValue = instance.AddExistingContentType(contentType)
public ContentType AddExistingContentType(
ContentType contentType
)
Parameters
contentType
Type: Microsoft.SharePoint.Client.ContentTypeA ContentType object that represents the content type to add to the collection. It must not be a null reference (Nothing in Visual Basic).
Return value
Type: Microsoft.SharePoint.Client.ContentType
A ContentType object to add to the collection.
Exceptions
Exception | Condition |
---|---|
[ServerException] | The collection is read only. |
[SPException] | A content type with same name as the given content type exists in the collection. |
Remarks
The name of the given content type must not be the same as any of the content types in the collection.