Table of Contents

Class SnowflakeIdGeneratorServiceCollectionExtensions

Namespace
SnowflakeID
Assembly
SnowflakeIDGenerator.DependencyInjection.dll

Extension methods to register SnowflakeIDGenerator services.

public static class SnowflakeIdGeneratorServiceCollectionExtensions
Inheritance
SnowflakeIdGeneratorServiceCollectionExtensions
Inherited Members

Remarks

Methods

AddSnowflakeIdGeneratorService(IServiceCollection)

public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection)

Parameters

serviceCollection IServiceCollection

The IServiceCollection to add services to.

Returns

IServiceCollection

The updated IServiceCollection.

AddSnowflakeIdGeneratorService(IServiceCollection, SnowflakeIdGeneratorOptions)

public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection, SnowflakeIdGeneratorOptions options)

Parameters

serviceCollection IServiceCollection

The IServiceCollection to add services to.

options SnowflakeIdGeneratorOptions

Option object. Useful when obtaining from IConfigurationSection.

Returns

IServiceCollection

The updated IServiceCollection.

AddSnowflakeIdGeneratorService(IServiceCollection, int)

public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection, int machineId)

Parameters

serviceCollection IServiceCollection

The IServiceCollection to add services to.

machineId int

Machine number.

Returns

IServiceCollection

The updated IServiceCollection.

AddSnowflakeIdGeneratorService(IServiceCollection, int, DateTime)

public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection, int machineId, DateTime customEpoch)

Parameters

serviceCollection IServiceCollection

The IServiceCollection to add services to.

machineId int

Machine number.

customEpoch DateTime

Date to use as epoch.

Returns

IServiceCollection

The updated IServiceCollection.

AddSnowflakeIdGeneratorService(IServiceCollection, long, DateTime)

public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection, long machineId, DateTime customEpoch)

Parameters

serviceCollection IServiceCollection

The IServiceCollection to add services to.

machineId long

Machine number.

customEpoch DateTime

Date to use as epoch.

Returns

IServiceCollection

The updated IServiceCollection.

AddSnowflakeIdGeneratorService(IServiceCollection, ulong)

public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection, ulong machineId)

Parameters

serviceCollection IServiceCollection

The IServiceCollection to add services to.

machineId ulong

Machine number.

Returns

IServiceCollection

The updated IServiceCollection.

AddSnowflakeIdGeneratorService(IServiceCollection, ulong, DateTime)

public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection, ulong machineId, DateTime customEpoch)

Parameters

serviceCollection IServiceCollection

The IServiceCollection to add services to.

machineId ulong

Machine number.

customEpoch DateTime

Date to use as epoch.

Returns

IServiceCollection

The updated IServiceCollection.