Tanoda
InstanceStackEntry.cs
Go to the documentation of this file.
3 {
4 public InstanceStackEntry(object instance, string name) : this(instance, name, null) { }
5 public InstanceStackEntry(object instance, string name, ICacheEntry parent) : base(name)
6 {
7 Instance = instance;
8 Parent = parent;
9 }
10
11 public object Instance { get; set; }
12 public ICacheEntry Parent { get; set; }
13
14 public override bool EntryIsValid()
15 {
16 return Instance != null;
17 }
18 }
19}
object Instance
InstanceStackEntry(object instance, string name)
InstanceStackEntry(object instance, string name, ICacheEntry parent)
ICacheEntry Parent
override bool EntryIsValid()
Definition: ICacheEntry.cs:6