Class ImageProviderAsset
Represents metadata for an original image
Implements
Inherited Members
Namespace: AdaptiveImages.Providers
Assembly: AdaptiveImages.dll
Syntax
public class ImageProviderAsset : IImageProviderAsset
Properties
Copyright
Image copyright information
Declaration
public string? Copyright { get; set; }
Property Value
Type | Description |
---|---|
string |
Description
Image description
Declaration
public string? Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Filename
Image filename, where applicable
Declaration
public string? Filename { get; set; }
Property Value
Type | Description |
---|---|
string |
Filesize
Binary data size in bytes
Declaration
public long Filesize { get; set; }
Property Value
Type | Description |
---|---|
long |
Height
Image height in pixels
Declaration
public int Height { get; set; }
Property Value
Type | Description |
---|---|
int |
Id
The ID of the image in the image source system
Declaration
public string? Id { get; set; }
Property Value
Type | Description |
---|---|
string |
Keywords
Image keywords
Declaration
public IEnumerable<string>? Keywords { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |
Name
The display name of the image
Declaration
public string? Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Provider
The name of the image provider
Declaration
public string? Provider { get; set; }
Property Value
Type | Description |
---|---|
string |
Thumbnail
URL of associated thumbnail
Declaration
public string? Thumbnail { get; set; }
Property Value
Type | Description |
---|---|
string |
Width
Image width in pixels
Declaration
public int Width { get; set; }
Property Value
Type | Description |
---|---|
int |