// Token: 0x06001A54 RID: 6740 RVA: 0x0007D744 File Offset: 0x0007B944
 internal void GetCollectionChangedSources(int level, Action <int, object, bool?, List <string> > format, List <string> sources)
 {
     format(level, this, new bool?(false), sources);
     if (this._view != null)
     {
         CollectionView collectionView = this._view as CollectionView;
         if (collectionView != null)
         {
             collectionView.GetCollectionChangedSources(level + 1, format, sources);
             return;
         }
         format(level + 1, this._view, new bool?(true), sources);
     }
 }
Esempio n. 2
0
 internal void GetCollectionChangedSources(int level, Action <int, object, bool?, List <string> > format, List <string> sources)
 {
     format(level, this, false, sources);
     if (_view != null)
     {
         CollectionView cv = _view as CollectionView;
         if (cv != null)
         {
             cv.GetCollectionChangedSources(level + 1, format, sources);
         }
         else
         {
             format(level + 1, _view, true, sources);
         }
     }
 }