Webs.UpdateContentTypeXmlDocument Method

Adds or overwrites the specified XmlDocument Element (ContentType) element in the site content type.

Web Service: WebsWeb Reference: http://<Site>/_vti_bin/Webs.asmx

Syntax

<SoapDocumentMethodAttribute("http://schemas.microsoft.com/sharepoint/soap/UpdateContentTypeXmlDocument", RequestNamespace:="http://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace:="http://schemas.microsoft.com/sharepoint/soap/", Use:=SoapBindingUse.Literal, ParameterStyle:=SoapParameterStyle.Wrapped)> _
Public Function UpdateContentTypeXmlDocument ( _
    contentTypeId As String, _
    newDocument As XmlNode _
) As XmlNode

Dim instance As Webs
Dim contentTypeId As String
Dim newDocument As XmlNode
Dim returnValue As XmlNode

returnValue = instance.UpdateContentTypeXmlDocument(contentTypeId, newDocument)
[SoapDocumentMethodAttribute("http://schemas.microsoft.com/sharepoint/soap/UpdateContentTypeXmlDocument", RequestNamespace="http://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace="http://schemas.microsoft.com/sharepoint/soap/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)] 
public XmlNode UpdateContentTypeXmlDocument (
    string contentTypeId,
    XmlNode newDocument
)

Parameters

  • contentTypeId
    A string that represents the content type ID of the site content type.
  • newDocument
    A string that represents the XML document to replace the existing XML document.

Return Value

A string, in the following format, indicating that the method succeeded.

<Success xmlns="http://schemas.microsoft.com/sharepoint/soap/"/>

Remarks

Windows SharePoint Services identifies the XML document to overwrite in the content type by matching the URI of the XML document passed in the newDocument parameter.

If the XML document does not exist in the content type, Windows SharePoint Services adds it to the content type.

You can use XmlDocument Element (ContentType) elements to store custom information in content type definitions. For more information, see Custom Information in Content Types.

See Also

Reference

Webs Class
Webs Members
Webs Web Service