List.GetView method

Returns the list view with the specified view identifier.

Namespace:  Microsoft.SharePoint.Client
Assembly:  Microsoft.SharePoint.Client (in Microsoft.SharePoint.Client.dll)

Syntax

'Declaration
Public Function GetView ( _
    viewGuid As Guid _
) As View
'Usage
Dim instance As List
Dim viewGuid As Guid
Dim returnValue As View

returnValue = instance.GetView(viewGuid)
public View GetView(
    Guid viewGuid
)

Parameters

  • viewGuid
    Type: System.Guid

    Specifies the view identifier.

Return value

Type: Microsoft.SharePoint.Client.View
Returns a View instance representing the list view with the specified view identifier.

Exceptions

Exception Condition
[System.ArgumentException]

List view does not exist. Error code: -2147024809.

[System.UnauthorizedAccessException]

The current user has insufficient permissions. Error code: -2147024891.

Remarks

If an empty GUID is specified it must return the default view of the list.

See also

Reference

List class

List members

Microsoft.SharePoint.Client namespace