Table of Contents

Class UploadCompleteEventArgs

Namespace
Radzen
Assembly
Radzen.Blazor.dll

Supplies information about a Complete event that is being raised.

public class UploadCompleteEventArgs
Inheritance
UploadCompleteEventArgs
Inherited Members

Constructors

UploadCompleteEventArgs()

public UploadCompleteEventArgs()

Properties

Cancelled

Gets a boolean value indicating if the upload was cancelled by the user.

public bool Cancelled { get; set; }

Property Value

bool

JsonResponse

Gets the JSON response which the server returned after the upload.

public JsonDocument JsonResponse { get; set; }

Property Value

JsonDocument

RawResponse

Gets the raw server response.

public string RawResponse { get; set; }

Property Value

string