-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathTryConstants.cs
More file actions
27 lines (26 loc) · 1.17 KB
/
TryConstants.cs
File metadata and controls
27 lines (26 loc) · 1.17 KB
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
26
27
namespace TryMudBlazor.Client.Models
{
public static class Try
{
public const string Initialize = "Try.initialize";
public const string ChangeDisplayUrl = "Try.changeDisplayUrl";
public const string ReloadIframe = "Try.reloadIframe";
public const string Dispose = "Try.dispose";
public static class Editor
{
public const string Create = "Try.Editor.create";
public const string GetValue = "Try.Editor.getValue";
public const string SetValue = "Try.Editor.setValue";
public const string SetLangugage = "Try.Editor.setLanguage";
public const string Focus = "Try.Editor.focus";
public const string SetTheme = "Try.Editor.setTheme";
public const string Dispose = "Try.Editor.dispose";
}
public static class CodeExecution
{
public const string UpdateUserComponentsDll = "Try.CodeExecution.updateUserComponentsDll";
public const string ClearUserComponentsDll = "Try.CodeExecution.clearUserComponentsDll";
public const string HotReloadIframe = "Try.CodeExecution.hotReloadIframe";
}
}
}