2 writes to _context
PresentationFramework (2)
src\Framework\MS\Internal\Data\ViewManager.cs (2)
370_context = context; 379_context = new WeakReference(context);
6 references to _context
PresentationFramework (6)
src\Framework\MS\Internal\Data\ViewManager.cs (6)
391get { return _context != null || _callbackMethod != null; } 407WeakReference wrContext = _context as WeakReference; 408object context = (wrContext != null)? wrContext.Target : _context; 411else if (_context != null) 413lock(_context) 429(_callbackMethod == null && _context != null);