forked from NancyFx/Nancy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestingViewContextKeys.cs
More file actions
25 lines (25 loc) · 960 Bytes
/
Copy pathTestingViewContextKeys.cs
File metadata and controls
25 lines (25 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
namespace Nancy.Testing
{
/// <summary>
/// The key names for where the testing view context data is stored
/// </summary>
public static class TestingViewContextKeys
{
/// <summary>
/// The key in ViewLocationContext.Item for the view model
/// </summary>
public const string VIEWMODEL = "__Nancy_Testing_ViewModel";
/// <summary>
/// The key in ViewLocationContext.Item for the view name
/// </summary>
public const string VIEWNAME = "__Nancy_Testing_ViewName";
/// <summary>
/// The key in ViewLocationContext.Item for the model name
/// </summary>
public const string MODULENAME = "__Nancy_Testing_ModuleName";
/// <summary>
/// The key in ViewLocationContext.Item for the module path
/// </summary>
public const string MODULEPATH = "__Nancy_Testing_ModulePath";
}
}