[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Blazor.Designer.ServerSettings

ServerSettings Class

Represents the settings related to the backend server, including the base URL and request modification handlers.

Inheritance
ServerSettings
Namespace: GrapeCity.ActiveReports.Blazor.Designer
Assembly: MESCIUS.ActiveReports.Blazor.Designer.dll
Syntax
public class ServerSettings
Examples
new ServerSettings
{
    Url = "https://api.example.com",
    OnBeforeRequest = request =>
    {
        request.Headers.Add("Authorization", "Bearer token");
        return request;
    }
};

Constructors

Name Description
ServerSettings()

Properties

Name Description
OnBeforeRequest

Gets or sets a special handler to modify requests before they are sent.

Url

Gets or sets the base URL for Designer Server API..