27 lines
1.1 KiB
C#
27 lines
1.1 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.AspNetCore.Mvc.RazorPages
|
|
{
|
|
/// <summary>
|
|
/// Provides methods to create a Razor Page model.
|
|
/// </summary>
|
|
public interface IPageModelActivatorProvider
|
|
{
|
|
/// <summary>
|
|
/// Creates a Razor Page model activator.
|
|
/// </summary>
|
|
/// <param name="descriptor">The <see cref="CompiledPageActionDescriptor"/>.</param>
|
|
/// <returns>The delegate used to activate the page model.</returns>
|
|
Func<PageContext, object> CreateActivator(CompiledPageActionDescriptor descriptor);
|
|
|
|
/// <summary>
|
|
/// Releases a Razor Page model.
|
|
/// </summary>
|
|
/// <param name="descriptor">The <see cref="CompiledPageActionDescriptor"/>.</param>
|
|
/// <returns>The delegate used to dispose the activated Razor Page model.</returns>
|
|
Action<PageContext, object> CreateReleaser(CompiledPageActionDescriptor descriptor);
|
|
}
|
|
} |