The code below has occurred an error on "mediaEvent.Media" part.
'TrackEvent' does not contain a definition for 'Media', and no accessible extension method 'Media' accepting a first argument of type 'TrackEvent'
I don't know why...
if (firstEvent is TrackEvent)
{
TrackEvent mediaEvent = (TrackEvent)firstEvent;
Media media = mediaEvent.Media;
if (media != null && !string.IsNullOrEmpty(media.FilePath))
{ ...}
...
}
How can I fix this?