You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Resource references are not raising CollectionChanged event
To Reproduce
Steps to reproduce the behavior:
publicIReferences<IMyResource>MyResources{get;set;}protectedoverridevoidOnStart(){varrefCol=(IReferenceCollection)MyResources;refCol.CollectionChanged+=RefColOnCollectionChanged;}privatevoidRefColOnCollectionChanged(objectsender,ReferenceCollectionChangedEventArgse){// not raised}
Add resource to the references and save. Nothing happens.
Expected behavior
CollectionChanged event should be raised.