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)
Registers a SnowflakeIDGenerator in ISnowflakeIDGenerator.
public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection)
Parameters
serviceCollection
IServiceCollectionThe IServiceCollection to add services to.
Returns
- IServiceCollection
The updated IServiceCollection.
AddSnowflakeIdGeneratorService(IServiceCollection, SnowflakeIdGeneratorOptions)
Registers a SnowflakeIDGenerator in ISnowflakeIDGenerator.
public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection, SnowflakeIdGeneratorOptions options)
Parameters
serviceCollection
IServiceCollectionThe IServiceCollection to add services to.
options
SnowflakeIdGeneratorOptionsOption object. Useful when obtaining from IConfigurationSection.
Returns
- IServiceCollection
The updated IServiceCollection.
AddSnowflakeIdGeneratorService(IServiceCollection, int)
Registers a SnowflakeIDGenerator in ISnowflakeIDGenerator.
public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection, int machineId)
Parameters
serviceCollection
IServiceCollectionThe IServiceCollection to add services to.
machineId
intMachine number.
Returns
- IServiceCollection
The updated IServiceCollection.
AddSnowflakeIdGeneratorService(IServiceCollection, int, DateTime)
Registers a SnowflakeIDGenerator in ISnowflakeIDGenerator.
public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection, int machineId, DateTime customEpoch)
Parameters
serviceCollection
IServiceCollectionThe IServiceCollection to add services to.
machineId
intMachine number.
customEpoch
DateTimeDate to use as epoch.
Returns
- IServiceCollection
The updated IServiceCollection.
AddSnowflakeIdGeneratorService(IServiceCollection, long, DateTime)
Registers a SnowflakeIDGenerator in ISnowflakeIDGenerator.
public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection, long machineId, DateTime customEpoch)
Parameters
serviceCollection
IServiceCollectionThe IServiceCollection to add services to.
machineId
longMachine number.
customEpoch
DateTimeDate to use as epoch.
Returns
- IServiceCollection
The updated IServiceCollection.
AddSnowflakeIdGeneratorService(IServiceCollection, ulong)
Registers a SnowflakeIDGenerator in ISnowflakeIDGenerator.
public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection, ulong machineId)
Parameters
serviceCollection
IServiceCollectionThe IServiceCollection to add services to.
machineId
ulongMachine number.
Returns
- IServiceCollection
The updated IServiceCollection.
AddSnowflakeIdGeneratorService(IServiceCollection, ulong, DateTime)
Registers a SnowflakeIDGenerator in ISnowflakeIDGenerator.
public static IServiceCollection AddSnowflakeIdGeneratorService(this IServiceCollection serviceCollection, ulong machineId, DateTime customEpoch)
Parameters
serviceCollection
IServiceCollectionThe IServiceCollection to add services to.
machineId
ulongMachine number.
customEpoch
DateTimeDate to use as epoch.
Returns
- IServiceCollection
The updated IServiceCollection.