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; }
System.String
|
Graph DriveItem id of the resource (if it's a file)
string FileDriveItemId { get; }
System.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
|
Who last modified the resource
string LastModifiedBy { get; }
System.String
|
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; }
System.String
|
Id of the parent list of the resource
Guid ListId { get; }
Guid
|
ListItem id of the resource (if it's a file, listitem or page)
int ListItemId { get; }
System.Int32
|
Url of the parent list of the resource
Uri ListUrl { get; }
Uri
|
Name of the resource
string Name { get; }
System.String
|
SharePoint resource url for the unfurled link
Uri Resource { get; }
Uri
|
Id of the site collection containing the unfurled resource
Guid SiteId { get; }
Guid
|
Size of the resource (if it's a file or page)
long Size { get; }
System.Int64
|
Thumbnails of the resource (only for files at the moment)
List<IThumbnail> Thumbnails { get; }
PnP.Core.Model.SharePoint.List<IThumbnail>
|
Id of the web containing the unfurled resource
Guid WebId { get; }
Guid
|
Url of the web containing the unfurled resource
Uri WebUrl { get; }
Uri
|