-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathCachedMemberResult.cs
More file actions
48 lines (40 loc) · 1.1 KB
/
CachedMemberResult.cs
File metadata and controls
48 lines (40 loc) · 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
43
44
45
46
47
48
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Reflection;
namespace OutGridView.Cmdlet.TreeNodeCaching
{
sealed class CachedMemberResult : CachedMemberResultBase
{
MemberInfo Member {get;}
protected override string GetMemberName()
{
return Member.Name;
}
public CachedMemberResult(object parent, MemberInfo mem)
{
Parent = parent;
Member = mem;
try
{
if (mem is PropertyInfo p)
{
Value = p.GetValue(parent);
}
else if (mem is FieldInfo f)
{
Value = f.GetValue(parent);
}
else
{
throw new NotSupportedException($"Unknown {nameof(MemberInfo)} Type");
}
Representation = ValueToString();
}
catch (Exception)
{
Value = Representation = "Unavailable";
}
}
}
}