Interface IChange
Base interface for a description of a change to an object.
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public interface IChange
Base interface for a description of a change to an object.
public interface IChange
Gets a value that specifies a change token that identifies the changed object.
IChangeToken ChangeToken { get; }
IChangeToken
|
Gets a value that specifies the type of the change that has been made to the object.
ChangeType ChangeType { get; }
ChangeType
|
Gets a value that identifies the site that contains the changed object.
Guid SiteId { get; }
Guid
|
Gets a value that specifies the time that the object was modified.
DateTime Time { get; }
DateTime
|
Checks if a property was loaded or not
bool IsPropertyAvailable<TModel>(Expression<Func<TModel, object>> expression)
Expression<Func<TModel, System.Object>>
expression
An expression defining the property to check (e.g. p => p.Property) |
System.Boolean
|
TModel
The entity derived from IChange that you're checking the property for |