ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Viewer.Common Assembly / GrapeCity.Viewer.Common Namespace / IServiceContainer Interface / AddService<T> Method
The type of service to add.
An instance of the service type to add. This object must implement or inherit from the type indicated by the serviceType parameter.

In This Topic
    AddService<T> Method (IServiceContainer)
    In This Topic
    Adds the specified service to the service container.
    Syntax
    'Declaration
     
    Sub AddService(Of T)( _
       ByVal serviceInstance As T _
    ) 
    void AddService<T>( 
       T serviceInstance
    )

    Parameters

    serviceInstance
    An instance of the service type to add. This object must implement or inherit from the type indicated by the serviceType parameter.

    Type Parameters

    T
    The type of service to add.
    See Also