Interface IFieldThumbnailValue
Represents a image (thumbnail) field value
Inherited Members
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public interface IFieldThumbnailValue : IFieldValue
Represents a image (thumbnail) field value
public interface IFieldThumbnailValue : IFieldValue
Filename identifiying this image
string FileName { get; }
System.String
|
Server relative URL to access this image
string ServerRelativeUrl { get; }
System.String
|
Server URL
string ServerUrl { get; }
System.String
|
Thumbnail renderer
object ThumbnailRenderer { get; }
System.Object
|
Uploads an image to a modern image field for the current list item
Task UploadImageAsync(IListItem item, string name, Stream content)
IListItem
item
List item to update |
System.String
name
Image name |
Stream
content
The content of the file. |
Task
|