Transfer Service

Transfer service is the preferred technique when all of your components use the same data. In this tutorial, you will discover:

  • Declare a transfer service.
  • Consume a transfer service.
You can download the example code used in this topic on GitHub.

Declare a transfer service

Transfer service class is a like a model with properties and events for each property.

  1. Create a class and declare properties with events. For example:
public class ExampleTransferService
{
    private string _data = "Blazor School";
    public string Data
    {
        get => _data;
        set
        {
            _data = value;
            DataChanged?.Invoke(this, value);
        }
    }
    public event EventHandler<string> DataChanged = (sender, value) => { };

    public ObservableCollection<ExampleClass> ExampleInstances { get; set; } = new();
}

In the code sample, we have Data and ExampleInstances as a demonstration for a property and a collection. For collections, you can either use ObservableCollection or create your own Collection<T> class.

List does not support hooking events.
  1. Register the transfer service class at the Program.cs. For example:
...
builder.Services.AddServerSideBlazor();
builder.Services.AddScoped<ExampleTransferService>();

Consume a transfer service

You can consume a transfer service in a component or a class. To consume a transfer service in a class, you need to inject the service into the constructor of your class and register it as the same as the transfer service class. In this tutorial, we will focus on consuming a transfer service in a component.

  1. Inject the transfer service class and implement the IDisposable interface at the directive section of your component. For example:
@inject ExampleTransferService ExampleTransferService
@implements IDisposable
  1. Define methods to react to the change events in the code section. The method signature must match with the corresponding event. For example, if you want to react to the DataChanged event which has EventHandler<string> as the event handler, you need to have the method with object? sender, string value as the method signature. See the following code:
@code {
    ...
    public void OnDataClassChanged(object? sender, string value)
    {
        InvokeAsync(StateHasChanged);
    }
}
  1. Subscribe events at the Initialize phase and unsubscribe the subscribed events at the Dispose phase. See the Component Lifecycle guide.
@code {
    ...
    protected override void OnInitialized()
    {
        ExampleTransferService.ExampleInstances.CollectionChanged += OnCollectionChanged;
        ExampleTransferService.DataChanged += OnDataClassChanged;
    }

    public void Dispose()
    {
        ExampleTransferService.ExampleInstances.CollectionChanged -= OnCollectionChanged;
        ExampleTransferService.DataChanged -= OnDataClassChanged;
    }
}
BLAZOR SCHOOL
Designed and built with care by our dedicated team, with contributions from a supportive community. We strive to provide the best learning experience for our users.
Docs licensed CC-BY-SA-4.0
Copyright © 2021-2025 Blazor School
An unhandled error has occurred. Reload 🗙