ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Blazor.Designer Assembly / GrapeCity.ActiveReports.Blazor.Designer Namespace / ServerSettings Class
Members Example

In This Topic
    ServerSettings Class
    In This Topic
    Represents the settings related to the backend server, including the base URL and request modification handlers.
    Object Model
    ServerSettings Class
    Syntax
    'Declaration
     
    Public Class ServerSettings 
    public class ServerSettings 
    Example
    new ServerSettings
    {
        Url = "https://api.example.com",
        OnBeforeRequest = request =>
        {
            request.Headers.Add("Authorization", "Bearer token");
            return request;
        }
    };
    Inheritance Hierarchy

    System.Object
       GrapeCity.ActiveReports.Blazor.Designer.ServerSettings

    See Also