internal void FireCollectionLoaded(string url)
 {
     if (CollectionLoaded != null)
     {
         CollectionLoaded.Invoke(this, new CollectionLoadedEventArgs(url));
     }
 }
 protected virtual void OnCollectionLoaded()
 {
     CollectionLoaded?.Invoke(this, EventArgs.Empty);
 }