Esempio n. 1
0
        private static void ValueAtKeyPathDidChangeThunk(IntPtr self, string keyPath)
        {
            GCHandle       handle = GCHandle.FromIntPtr(self);
            OSXMediaPlayer player = (OSXMediaPlayer)handle.Target;

            player.ValueAtKeyPathDidChange(keyPath);
        }
Esempio n. 2
0
 // Convenience method for calling OSXMediaPlayer.IssuePluginEvent.
 //
 private void IssuePluginEvent(AVPPluginEventType type)
 {
     OSXMediaPlayer.IssuePluginEvent(type, _handle);
 }