| File: Filters\PageSaveTempDataPropertyFilterFactory.cs | Web Access |
| Project: src\aspnetcore\src\Mvc\Mvc.RazorPages\src\Microsoft.AspNetCore.Mvc.RazorPages.csproj (Microsoft.AspNetCore.Mvc.RazorPages) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.AspNetCore.Mvc.ViewFeatures.Filters; using Microsoft.Extensions.DependencyInjection; namespace Microsoft.AspNetCore.Mvc.Filters; internal sealed class PageSaveTempDataPropertyFilterFactory : IFilterFactory { public PageSaveTempDataPropertyFilterFactory(IReadOnlyList<LifecycleProperty> properties) { Properties = properties; } public IReadOnlyList<LifecycleProperty> Properties { get; } public bool IsReusable => false; public IFilterMetadata CreateInstance(IServiceProvider serviceProvider) { ArgumentNullException.ThrowIfNull(serviceProvider); var service = serviceProvider.GetRequiredService<PageSaveTempDataPropertyFilter>(); service.Properties = Properties; return service; } }