Migrating some video playing code from Silverlight to UWP. In the SL app, I used the MediaElement object and its LicenseAcquirer to facilitate the DRM, as follows:
mediaElement1.LicenseAcquirer = new ManualLicenseAcquirer(mediaElement1.Name, new Uri(http://www.blah.com/secure/license/playready), UriKind.Absolute));
I can't figure out what the equivalent license function is in the MediaPlayerElement. Any ideas?