Lists.AddWikiPage method

Adds a new Wiki page to a Wiki page library.

Namespace:  WebSvcLists
Assembly:  STSSOAP (in STSSOAP.dll)

Syntax

'Declaration
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/AddWikiPage", RequestNamespace := "https://schemas.microsoft.com/sharepoint/soap/",  _
    ResponseNamespace := "https://schemas.microsoft.com/sharepoint/soap/",  _
    Use := SoapBindingUse.Literal, ParameterStyle := SoapParameterStyle.Wrapped)> _
Public Function AddWikiPage ( _
    strListName As String, _
    listRelPageUrl As String, _
    wikiContent As String _
) As XmlNode
'Usage
Dim instance As Lists
Dim strListName As String
Dim listRelPageUrl As String
Dim wikiContent As String
Dim returnValue As XmlNode

returnValue = instance.AddWikiPage(strListName, _
    listRelPageUrl, wikiContent)
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/AddWikiPage", RequestNamespace = "https://schemas.microsoft.com/sharepoint/soap/", 
    ResponseNamespace = "https://schemas.microsoft.com/sharepoint/soap/", 
    Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)]
public XmlNode AddWikiPage(
    string strListName,
    string listRelPageUrl,
    string wikiContent
)

Parameters

  • strListName
    Type: System.String

    The name of the Wiki Library to create the wiki page.

  • listRelPageUrl
    Type: System.String

    The list relative URL of the wiki page.

Return value

Type: System.Xml.XmlNode
The XML representing the SPListItem that is created.

See also

Reference

Lists class

Lists members

WebSvcLists namespace