Click or drag to resize

ServiceCollectionExtensionsAddSystem Method (IServiceCollection, Type)

Adds the system of the specified type as a singleton and enables the system in the system registry.

Namespace:  SampSharp.Entities
Assembly:  SampSharp.Entities (in SampSharp.Entities.dll) Version: 0.0.0-local+709673996c0cc3c0733358a87691d1009326afa7
Syntax
C#
public static IServiceCollection AddSystem(
	this IServiceCollection services,
	Type type
)

Parameters

services
Type: Microsoft.Extensions.DependencyInjectionIServiceCollection
The service collection to add the system to.
type
Type: SystemType
The type of the system to add.

Return Value

Type: IServiceCollection
A reference to this instance after the operation has completed.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IServiceCollection. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also