HelpLinkData.cs
1.1 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using Codice.LogWrapper;
namespace Unity.PlasticSCM.Editor.Help
{
internal static class HelpLinkData
{
internal static bool TryGet(
string link, out HelpLink.LinkType type, out string content)
{
type = HelpLink.LinkType.Link;
content = string.Empty;
int separatorIdx = link.IndexOf(':');
if (separatorIdx == -1)
return false;
string key = link.Substring(0, separatorIdx);
try
{
type = (HelpLink.LinkType)Enum.Parse(
typeof(HelpLink.LinkType), key, true);
}
catch (Exception ex)
{
mLog.ErrorFormat("Unable to get help link data: '{0}': {1}",
key, ex.Message);
mLog.DebugFormat("StackTrace: {0}", ex.StackTrace);
return false;
}
content = link.Substring(separatorIdx + 1);
return true;
}
static readonly ILog mLog = LogManager.GetLogger("HelpLinkData");
}
}