SPList.GetItemByIdAllFields Method
Returns the list item with the specified identifier (ID).
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
Syntax
'Declaration
Public Function GetItemByIdAllFields ( _
id As Integer _
) As SPListItem
'Usage
Dim instance As SPList
Dim id As Integer
Dim returnValue As SPListItem
returnValue = instance.GetItemByIdAllFields(id)
public SPListItem GetItemByIdAllFields(
int id
)
Parameters
id
Type: System.Int32The ID of the item. The value of this parameter does not correspond to the index of the item within the collection of items for the list, but to the value of the ID property of the list item.
Return Value
Type: Microsoft.SharePoint.SPListItem
The list item.
Remarks
This method retrieves data for all fields of the specified item, which can have a significant impact on performance. To retrieve the data for only some fields, call the GetItemByIdSelectedFields(Int32, []) method with the desired fields.