예제 #1
0
        private bool TryGetPropBag(StoreNodeBag objectNode, out IPropBagInternal propBag)
        {
            // Unwrap the weak reference held by the objectNode in it's PropBagProxy.PropBagRef.
            //bool result = objectNode.PropBagProxy.PropBagRef.TryGetTarget(out propBag);
            bool result = objectNode.TryGetPropBag(out propBag);

            return(result);
        }