Skip to main content

UploadHttpRequestInfo.Status Property

Returns the status of the request’s response.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public int Status { get; }

Property Value

Type Description
Int32

An integer value that specifies the response status.

Remarks

The following example demonstrates how to use this property in the FileUploadError event handler:

<DxUpload Name="myFile" UploadUrl="https://localhost:10000/api/Upload/Upload/"
          FileUploadError="@OnUploadError">
</DxUpload>
<div class="alert alert-danger @(ErrorVisible? " visible" : " invisible")">@MyError</div>

@code {
    bool ErrorVisible { get; set; } = false;
    string MyError { get; set; }

    void OnUploadError(FileUploadErrorEventArgs e) {
        MyError = e.RequestInfo.Status.ToString();
        ErrorVisible = true;
        InvokeAsync(StateHasChanged);
    }
}
See Also