blob: d5a70c28c920efc14262c4724ce43d305781b207 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
namespace System.Web.WebPages
{
internal sealed class WebPageMatch
{
public WebPageMatch(string matchedPath, string pathInfo)
{
MatchedPath = matchedPath;
PathInfo = pathInfo;
}
public string MatchedPath { get; private set; }
public string PathInfo { get; private set; }
}
}
|