Метод List.AddItem
Creates a new list item in the list.
Пространство имен: Microsoft.SharePoint.Client
Сборки: Microsoft.SharePoint.Client.Silverlight (в Microsoft.SharePoint.Client.Silverlight.dll); Microsoft.SharePoint.Client.Phone (в Microsoft.SharePoint.Client.Phone.dll) Microsoft.SharePoint.Client (в Microsoft.SharePoint.Client.dll)
Синтаксис
'Декларация
Public Function AddItem ( _
parameters As ListItemCreationInformation _
) As ListItem
'Применение
Dim instance As List
Dim parameters As ListItemCreationInformation
Dim returnValue As ListItem
returnValue = instance.AddItem(parameters)
public ListItem AddItem(
ListItemCreationInformation parameters
)
Параметры
parameters
Тип: Microsoft.SharePoint.Client.ListItemCreationInformationSpecifies the properties of the new list item.
Возвращаемое значение
Тип: Microsoft.SharePoint.Client.ListItem
Returns a ListItem instance representing the creation of a new list item in the list.
Исключения
Исключение | Условие |
---|---|
[Microsoft.SharePoint.SPException] | Folder for the new list item does not exist or the current user lacks permissions to the folder. Error code: -2130575312. The leafname contains an invalid character. Error code: -2130575245. |
[System.ArgumentOutOfRangeException] | ListItemCreationInformation.UnderlyingObjectType is not valid. Error code: -2146233086. |
[System.UnauthorizedAccessException] | The current user has insufficient permissions. Error code: -2147024891. |