Interface IUnfurledResource
Defines the data coming back from unfurling a link
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public interface IUnfurledResource
Defines the data coming back from unfurling a link
public interface IUnfurledResource
Graph Drive Id of the resource (if it's a file)
string FileDriveId { get; }
| string |
Graph DriveItem id of the resource (if it's a file)
string FileDriveItemId { get; }
| string |
Unique ID of the resource (if it's a file)
Guid FileUniqueId { get; }
| Guid |
When was the resource last modified
DateTime LastModified { get; }
| DateTime |
Type of resource that the unfurled link is referring to
UnfurlLinkType LinkType { get; }
| UnfurlLinkType |
Display name of the parent list of the resource
string ListDisplayName { get; }
| string |
ListItem id of the resource (if it's a file, listitem or page)
int ListItemId { get; }
| int |
Id of the site collection containing the unfurled resource
Guid SiteId { get; }
| Guid |
Thumbnails of the resource (only for files at the moment)
List<IThumbnail> Thumbnails { get; }
| List<IThumbnail> |