mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
26 lines
671 B
C#
26 lines
671 B
C#
using System.Text.Json;
|
|
|
|
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Supplies information about a <see cref="Radzen.Blazor.RadzenUpload.Complete" /> event that is being raised.
|
|
/// </summary>
|
|
public class UploadCompleteEventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets the JSON response which the server returned after the upload.
|
|
/// </summary>
|
|
public JsonDocument? JsonResponse { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets the raw server response.
|
|
/// </summary>
|
|
public string? RawResponse { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets a boolean value indicating if the upload was cancelled by the user.
|
|
/// </summary>
|
|
public bool Cancelled { get; set; }
|
|
}
|
|
|