Interface IDataModelSupportingGetChanges
Defines the interface for Domain Model objects that can obtain a change log.
Namespace: PnP.Core.Model
Assembly: PnP.Core.dll
Syntax
public interface IDataModelSupportingGetChanges
Defines the interface for Domain Model objects that can obtain a change log.
public interface IDataModelSupportingGetChanges
Gets the list of changes.
IList<IChange> GetChanges(ChangeQueryOptions query)
ChangeQueryOptions
query
The query. |
PnP.Core.Model.SharePoint.IList<IChange>
The list of changes. |
This does not load the parent object or any properties. It returns a completely separate object.
Gets the list of changes.
Task<IList<IChange>> GetChangesAsync(ChangeQueryOptions query)
ChangeQueryOptions
query
The query. |
Task<PnP.Core.Model.SharePoint.IList<IChange>>
The list of changes. |
This does not load the parent object or any properties. It returns a completely separate object.
Gets the list of changes.
IEnumerableBatchResult<IChange> GetChangesBatch(ChangeQueryOptions query)
ChangeQueryOptions
query
The query. |
IEnumerableBatchResult<IChange>
The list of changes. |
This does not load the parent object or any properties. It returns a completely separate object.
Gets the list of changes.
IEnumerableBatchResult<IChange> GetChangesBatch(Batch batch, ChangeQueryOptions query)
Batch
batch
Batch to add this request to |
ChangeQueryOptions
query
The query. |
IEnumerableBatchResult<IChange>
The list of changes. |
This does not load the parent object or any properties. It returns a completely separate object.
Gets the list of changes.
Task<IEnumerableBatchResult<IChange>> GetChangesBatchAsync(ChangeQueryOptions query)
ChangeQueryOptions
query
The query. |
Task<IEnumerableBatchResult<IChange>>
The list of changes. |
This does not load the parent object or any properties. It returns a completely separate object.
Gets the list of changes.
Task<IEnumerableBatchResult<IChange>> GetChangesBatchAsync(Batch batch, ChangeQueryOptions query)
Batch
batch
Batch to add this request to |
ChangeQueryOptions
query
The query. |
Task<IEnumerableBatchResult<IChange>>
The list of changes. |
This does not load the parent object or any properties. It returns a completely separate object.