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.
Retrieves an enumerable sequence of the child client objects from a collection.
Namespace: Microsoft.SharePoint.Client
Assemblies: Microsoft.SharePoint.Client.Silverlight.Runtime (in Microsoft.SharePoint.Client.Silverlight.Runtime.dll); Microsoft.SharePoint.Client.Runtime (in Microsoft.SharePoint.Client.Runtime.dll)
Syntax
'Declaration
Public Function LoadQuery(Of T As ClientObject) ( _
clientObjects As ClientObjectCollection(Of T) _
) As IEnumerable(Of T)
'Usage
Dim instance As ClientRuntimeContext
Dim clientObjects As ClientObjectCollection(Of T)
Dim returnValue As IEnumerable(Of T)
returnValue = instance.LoadQuery(clientObjects)
public IEnumerable<T> LoadQuery<T>(
ClientObjectCollection<T> clientObjects
)
where T : ClientObject
Type Parameters
- T
The type of the child client object.
Parameters
clientObjects
Type: Microsoft.SharePoint.Client.ClientObjectCollection<T>The ClientObjectCollection<UMP> object that represents the collection of the client objects.
Return Value
Type: System.Collections.Generic.IEnumerable<T>
The enumerable sequence of client objects.
Remarks
This method retrieves the enumerable sequence of client objects that are the child objects of a collection; specifically, the user can apply the foreach programming pattern to iterate the sequence. The retrieved client objects are stored in the return value.