Table of Contents

Class MyServicesBase

Namespace
ToSic.Lib.Services
Assembly
ToSic.Lib.Core.dll

Base class for all MyServices. These are helper objects to get dependencies for a class. It should be used when the owning-class is expected to be inherited. This is important for inheriting classes to keep a stable constructor.

Can collect all objects which need the log and init that.

[PublicApi]
public abstract class MyServicesBase
Inheritance
MyServicesBase
Derived

Constructors

MyServicesBase(NoParamOrder, object[])

protected MyServicesBase(NoParamOrder protect = default, object[] connect = null)

Parameters

protect NoParamOrder
connect object[]

Methods

ConnectService<TService>(TService)

Experimental Connect-one, may be removed again.

protected TService ConnectService<TService>(TService service)

Parameters

service TService

Returns

TService

the service passed in

Type Parameters

TService

ConnectServices(params object[])

Add objects to various queues to be auto-initialized when ConnectServices<TDependencies>(TDependencies, ILog) is called later on

protected void ConnectServices(params object[] services)

Parameters

services object[]

One or more services which could implement ILazyInitLog or IHasLog