FileResult Class

Definition

A representation of a file, as a result of a pick action by the user, and its content type.

public ref class FileResult : Microsoft::Maui::Storage::FileBase
public class FileResult : Microsoft.Maui.Storage.FileBase
type FileResult = class
    inherit FileBase
Public Class FileResult
Inherits FileBase
Inheritance
FileResult

Constructors

FileResult(FileBase)

Initializes a new instance of the FileResult class from an existing instance.

FileResult(String)

Initializes a new instance of the FileResult class from a file path.

FileResult(String, String)

Initializes a new instance of the FileResult class from a file path, explicitly specifying the content type.

Properties

ContentType

Gets or sets the file's content type as a MIME type (e.g.: image/png).

(Inherited from FileBase)
FileName

Gets or sets the filename for this file.

(Inherited from FileBase)
FullPath

Gets the full path and filename.

(Inherited from FileBase)

Methods

OpenReadAsync()

Opens a Stream to the corresponding file on the filesystem.

(Inherited from FileBase)

Applies to