SPListItem.ReplaceLink Method
Replaces all instances of a specified link in the list item with a new link.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
Syntax
'Declaration
Public Sub ReplaceLink ( _
oldUrl As String, _
newUrl As String _
)
'Usage
Dim instance As SPListItem
Dim oldUrl As String
Dim newUrl As String
instance.ReplaceLink(oldUrl, newUrl)
public void ReplaceLink(
string oldUrl,
string newUrl
)
Parameters
oldUrl
Type: System.StringThe absolute URL to be replaced.
newUrl
Type: System.StringThe absolute URL with which to replace the old URL.
Remarks
This method immediately updates the item with the new link. There is no need to call the Update method after calling this method.