Change.GetUpdates Method
Gets the Update objects from a collection of Change objects.
Namespace: Microsoft.SharePoint.JSGrid
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Shared Function GetUpdates ( _
changes As IEnumerable(Of Change) _
) As IEnumerable(Of Update)
'Usage
Dim changes As IEnumerable(Of Change)
Dim returnValue As IEnumerable(Of Update)
returnValue = Change.GetUpdates(changes)
public static IEnumerable<Update> GetUpdates(
IEnumerable<Change> changes
)
Parameters
changes
Type: System.Collections.Generic.IEnumerable<Change>A collection of Change objects.
Return Value
Type: System.Collections.Generic.IEnumerable<Update>
A IEnumerable<T> created by collecting all updates in a collections of changes.
Remarks
The changes are returned in order.