Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the subset of the EntityList<TEntity> that consists of all and only the list items that belong to a particular folder, with or without the items in subfolders.
Namespace: Microsoft.SharePoint.Linq
Assembly: Microsoft.SharePoint.Linq (in Microsoft.SharePoint.Linq.dll)
Syntax
'Declaration
Public Function ScopeToFolder ( _
folderUrl As String, _
recursive As Boolean _
) As IQueryable(Of TEntity)
'Usage
Dim instance As EntityList
Dim folderUrl As String
Dim recursive As Boolean
Dim returnValue As IQueryable(Of TEntity)
returnValue = instance.ScopeToFolder(folderUrl, _
recursive)
public IQueryable<TEntity> ScopeToFolder(
string folderUrl,
bool recursive
)
Parameters
folderUrl
Type: System.StringThe URL of the folder.
recursive
Type: System.Booleantrue to include items in subfolders; false to exclude them.
Return Value
Type: System.Linq.IQueryable<TEntity>
An IQueryable<T> object that can be cast to EntityList<TEntity>.