Class ItemInfo
Contains properties to get or set the resource data.
Inheritance
System.Object
ItemInfo
Namespace: BoldReports.Web.ReportDesigner
Assembly: BoldReports.Web.dll
Syntax
public class ItemInfo : Object
Constructors
ItemInfo()
Declaration
public ItemInfo()
Properties
Data
Gets or sets the resource data as a byte array.
Declaration
public byte[] Data { get; set; }
Property Value
Type | Description |
---|---|
System.Byte[] | A byte array that contains the resource data, such as file contents or binary data. |
PostedFile
Gets or sets the resource data as an IFormFile.
Declaration
public IFormFile PostedFile { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Http.IFormFile | An instance of Microsoft.AspNetCore.Http.IFormFile representing the uploaded file from the client. This is typically used in ASP.NET Core applications to handle file uploads in HTTP requests. |