Exemplo n.º 1
0
 protected override void OnClose()
 {
     // If we have an expansion, there's a danger that more than one data item is
     // referring to the same DkmClrValue (e.g. if it's an AggregateExpansion).
     // To be safe, we'll only call Close when there's no expansion.  Since this
     // is only an optimization (the debugger will eventually close the value
     // anyway), a conservative approach is acceptable.
     if (this.Expansion == null)
     {
         Value.Close();
     }
 }
Exemplo n.º 2
0
 protected override void OnClose()
 {
     Debug.WriteLine("Closing " + FullName);
     Value.Close();
 }
Exemplo n.º 3
0
 protected override void OnClose()
 {
     Value.Close();
 }