Represents the settings related to the backend server, including the base URL and request modification handlers.
public class ServerSettings
'Declaration
Public Class ServerSettings
new ServerSettings
{
Url = "https://api.example.com",
OnBeforeRequest = request =>
{
request.Headers.Add("Authorization", "Bearer token");
return request;
}
};
System.Object
GrapeCity.ActiveReports.Blazor.Designer.ServerSettings