本文整理汇总了C#中ServiceCollection.ToList方法的典型用法代码示例。如果您正苦于以下问题:C# ServiceCollection.ToList方法的具体用法?C# ServiceCollection.ToList怎么用?C# ServiceCollection.ToList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ServiceCollection
的用法示例。
在下文中一共展示了ServiceCollection.ToList方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddLocalizationWithLocalizationOptions_AddsNeededServices
public void AddLocalizationWithLocalizationOptions_AddsNeededServices()
{
// Arrange
var collection = new ServiceCollection();
// Act
collection.AddLocalization(options => options.ResourcesPath = "Resources");
// Assert
var services = collection.ToList();
Assert.Equal(4, services.Count);
Assert.Equal(typeof(IStringLocalizerFactory), services[0].ServiceType);
Assert.Equal(typeof(ResourceManagerStringLocalizerFactory), services[0].ImplementationType);
Assert.Equal(ServiceLifetime.Singleton, services[0].Lifetime);
Assert.Equal(typeof(IStringLocalizer<>), services[1].ServiceType);
Assert.Equal(typeof(StringLocalizer<>), services[1].ImplementationType);
Assert.Equal(ServiceLifetime.Transient, services[1].Lifetime);
Assert.Equal(typeof(IConfigureOptions<LocalizationOptions>), services[2].ServiceType);
Assert.Equal(ServiceLifetime.Singleton, services[2].Lifetime);
Assert.Equal(typeof(IOptions<>), services[3].ServiceType);
Assert.Equal(ServiceLifetime.Singleton, services[3].Lifetime);
}
示例2: AddModule
public void AddModule()
{
var services = new ServiceCollection();
EasyProjectServiceCollectionExtensions.AddModule<StubModule1>(services);
var serviceList = services.ToList();
Assert.Equal(1, serviceList.Count);
Assert.Equal(typeof(IModule), services[0].ServiceType);
Assert.Equal(typeof(StubModule1), services[0].ImplementationType);
Assert.Equal(ServiceLifetime.Transient, services[0].Lifetime);
}
示例3: AddControllerAsServices_MultipleCalls_RetainsPreviouslyAddedTypes
public void AddControllerAsServices_MultipleCalls_RetainsPreviouslyAddedTypes()
{
// Arrange
var services = new ServiceCollection();
var manager = new ApplicationPartManager();
manager.ApplicationParts.Add(new TestApplicationPart(typeof(ControllerOne), typeof(ControllerTwo)));
manager.FeatureProviders.Add(new TestFeatureProvider());
var builder = new MvcBuilder(services, manager);
builder.AddControllersAsServices();
// Act
builder.AddControllersAsServices();
// Assert 2
var collection = services.ToList();
Assert.Equal(3, collection.Count);
Assert.Single(collection, d => d.ServiceType.Equals(typeof(ControllerOne)));
Assert.Single(collection, d => d.ServiceType.Equals(typeof(ControllerTwo)));
}
示例4: AddLocalization_AddsNeededServices
public void AddLocalization_AddsNeededServices()
{
// Arrange
var collection = new ServiceCollection();
// Act
collection.AddLocalization();
// Assert
var services = collection.ToList();
Assert.Equal(2, services.Count);
Assert.Equal(typeof(IStringLocalizerFactory), services[0].ServiceType);
Assert.Equal(typeof(ResourceManagerStringLocalizerFactory), services[0].ImplementationType);
Assert.Equal(ServiceLifetime.Singleton, services[0].Lifetime);
Assert.Equal(typeof(IStringLocalizer<>), services[1].ServiceType);
Assert.Equal(typeof(StringLocalizer<>), services[1].ImplementationType);
Assert.Equal(ServiceLifetime.Transient, services[1].Lifetime);
}
示例5: AddEasyProject_BuiltIn_Services
public void AddEasyProject_BuiltIn_Services()
{
var services = new ServiceCollection();
Action<ModuleOptions> setup = options => { };
EasyProjectServiceCollectionExtensions.AddEasyProject(services, setup);
var serviceList = services.ToList();
Assert.Equal(3, serviceList.Count);
Assert.Equal(typeof(ISystemClock), services[0].ServiceType);
Assert.Equal(typeof(NetFrameworkSystemClock), services[0].ImplementationType);
Assert.Equal(ServiceLifetime.Transient, services[0].Lifetime);
Assert.Equal(typeof(IModuleInfoProvider), services[1].ServiceType);
Assert.Equal(typeof(ModuleInfoProvider), services[1].ImplementationType);
Assert.Equal(ServiceLifetime.Singleton, services[1].Lifetime);
Assert.Equal(typeof(IConfigureOptions<ModuleOptions>), services[2].ServiceType);
Assert.Equal(ServiceLifetime.Singleton, services[2].Lifetime);
}
示例6: WithControllersAsServices_AddsTypesToControllerTypeProviderAndServiceCollection
public void WithControllersAsServices_AddsTypesToControllerTypeProviderAndServiceCollection()
{
// Arrange
var builder = new Mock<IMvcBuilder>();
var collection = new ServiceCollection();
builder.SetupGet(b => b.Services).Returns(collection);
var controllerTypes = new[]
{
typeof(ControllerTypeA).GetTypeInfo(),
typeof(TypeBController).GetTypeInfo(),
};
// Act
builder.Object.AddControllersAsServices(controllerTypes);
// Assert
var services = collection.ToList();
Assert.Equal(4, services.Count);
Assert.Equal(typeof(ControllerTypeA), services[0].ServiceType);
Assert.Equal(typeof(ControllerTypeA), services[0].ImplementationType);
Assert.Equal(ServiceLifetime.Transient, services[0].Lifetime);
Assert.Equal(typeof(TypeBController), services[1].ServiceType);
Assert.Equal(typeof(TypeBController), services[1].ImplementationType);
Assert.Equal(ServiceLifetime.Transient, services[1].Lifetime);
Assert.Equal(typeof(IControllerActivator), services[2].ServiceType);
Assert.Equal(typeof(ServiceBasedControllerActivator), services[2].ImplementationType);
Assert.Equal(ServiceLifetime.Transient, services[2].Lifetime);
Assert.Equal(typeof(IControllerTypeProvider), services[3].ServiceType);
var typeProvider = Assert.IsType<StaticControllerTypeProvider>(services[3].ImplementationInstance);
Assert.Equal(controllerTypes, typeProvider.ControllerTypes.OrderBy(c => c.Name));
Assert.Equal(ServiceLifetime.Singleton, services[3].Lifetime);
}
示例7: WithControllersAsServices_AddsTypesToControllerTypeProviderAndServiceCollection
public void WithControllersAsServices_AddsTypesToControllerTypeProviderAndServiceCollection()
{
// Arrange
var collection = new ServiceCollection();
var controllerTypes = new[]
{
typeof(ControllerTypeA),
typeof(TypeBController),
}.Select(t => t.GetTypeInfo()).ToArray();
var builder = new MvcBuilder(collection, GetApplicationPartManager(controllerTypes));
// Act
builder.AddControllersAsServices();
// Assert
var services = collection.ToList();
Assert.Equal(3, services.Count);
Assert.Equal(typeof(ControllerTypeA), services[0].ServiceType);
Assert.Equal(typeof(ControllerTypeA), services[0].ImplementationType);
Assert.Equal(ServiceLifetime.Transient, services[0].Lifetime);
Assert.Equal(typeof(TypeBController), services[1].ServiceType);
Assert.Equal(typeof(TypeBController), services[1].ImplementationType);
Assert.Equal(ServiceLifetime.Transient, services[1].Lifetime);
Assert.Equal(typeof(IControllerActivator), services[2].ServiceType);
Assert.Equal(typeof(ServiceBasedControllerActivator), services[2].ImplementationType);
Assert.Equal(ServiceLifetime.Transient, services[2].Lifetime);
}