예제 #1
0
 public static Task <string> GetDesktopEntryAsync(this IMediaPlayer2 o) => o.GetAsync <string>("DesktopEntry");
예제 #2
0
 public static Task <string[]> GetSupportedMimeTypesAsync(this IMediaPlayer2 o) => o.GetAsync <string[]>("SupportedMimeTypes");
예제 #3
0
 public static Task <string> GetIdentityAsync(this IMediaPlayer2 o) => o.GetAsync <string>("Identity");
예제 #4
0
 public static Task <bool> GetHasTrackListAsync(this IMediaPlayer2 o) => o.GetAsync <bool>("HasTrackList");
예제 #5
0
 public static Task <bool> GetCanRaiseAsync(this IMediaPlayer2 o) => o.GetAsync <bool>("CanRaise");
예제 #6
0
 public static Task SetFullscreenAsync(this IMediaPlayer2 o, bool val) => o.SetAsync("Fullscreen", val);
예제 #7
0
 public static Task <bool> GetCanSetFullscreenAsync(this IMediaPlayer2 o) => o.GetAsync <bool>("CanSetFullscreen");