Changing Service Behavior
Implementing a Service
Implementing the Interface
public class CustomXService: IXService
{
public Task<XReturn> XMethod(.., CancellationToken token)
{
// Custom implementation
return xReturn;
}
}Inheriting an Existing Implementation
Registering the Custom Service Implementation
Last updated