You've already forked linux-packaging-mono
19 lines
1.0 KiB
C#
19 lines
1.0 KiB
C#
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
namespace System.Web.WebPages
|
|
{
|
|
/// <summary>
|
|
/// An interface that provides DisplayInfo for a virtual path and request. An IDisplayMode may modify the virtual path before checking
|
|
/// if it exists. CanHandleContext is called to determine if the Display Mode is available to return display info for the request.
|
|
/// GetDisplayInfo should return null if the virtual path does not exist. For an example implementation, see DefaultDisplayMode.
|
|
/// DisplayModeId is used to cache the non-null result of a call to GetDisplayInfo and should be unique for each Display Mode. See
|
|
/// DisplayModes for the built-in Display Modes and their ids.
|
|
/// </summary>
|
|
public interface IDisplayMode
|
|
{
|
|
string DisplayModeId { get; }
|
|
bool CanHandleContext(HttpContextBase httpContext);
|
|
DisplayInfo GetDisplayInfo(HttpContextBase httpContext, string virtualPath, Func<string, bool> virtualPathExists);
|
|
}
|
|
}
|