예제 #1
0
 public static void PlayerViewDidPlayTime(this IYTPlayerViewDelegate This, YTPlayerView playerView, float playTime)
 {
     if (playerView == null)
     {
         throw new ArgumentNullException("playerView");
     }
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr_float(This.Handle, Selector.GetHandle("playerView:didPlayTime:"), playerView.Handle, playTime);
 }
예제 #2
0
 public static void PlayerViewDidBecomeReady(this IYTPlayerViewDelegate This, YTPlayerView playerView)
 {
     if (playerView == null)
     {
         throw new ArgumentNullException("playerView");
     }
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("playerViewDidBecomeReady:"), playerView.Handle);
 }
예제 #3
0
 public static void PlayerViewReceivedError(this IYTPlayerViewDelegate This, YTPlayerView playerView, YTPlayerError error)
 {
     if (playerView == null)
     {
         throw new ArgumentNullException("playerView");
     }
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr_int(This.Handle, Selector.GetHandle("playerView:receivedError:"), playerView.Handle, (int)error);
 }
예제 #4
0
 public static void PlayerViewDidChangeToQuality(this IYTPlayerViewDelegate This, YTPlayerView playerView, YTPlaybackQuality quality)
 {
     if (playerView == null)
     {
         throw new ArgumentNullException("playerView");
     }
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr_int(This.Handle, Selector.GetHandle("playerView:didChangeToQuality:"), playerView.Handle, (int)quality);
 }
예제 #5
0
 public virtual void PlayerViewReceivedError(YTPlayerView playerView, YTPlayerError error)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
예제 #6
0
 public virtual global::UIKit.UIView PlayerViewPreferredInitialLoadingView(YTPlayerView playerView)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
예제 #7
0
 public virtual global::UIKit.UIColor PlayerViewPreferredWebViewBackgroundColor(YTPlayerView playerView)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
예제 #8
0
 public virtual void PlayerViewDidPlayTime(YTPlayerView playerView, float playTime)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
예제 #9
0
 public virtual void PlayerViewDidChangeToState(YTPlayerView playerView, YTPlayerState state)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
예제 #10
0
 public virtual void PlayerViewDidChangeToQuality(YTPlayerView playerView, YTPlaybackQuality quality)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
예제 #11
0
 public virtual void PlayerViewDidBecomeReady(YTPlayerView playerView)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
예제 #12
0
 public static global::UIKit.UIView PlayerViewPreferredInitialLoadingView(this IYTPlayerViewDelegate This, YTPlayerView playerView)
 {
     if (playerView == null)
     {
         throw new ArgumentNullException("playerView");
     }
     return(Runtime.GetNSObject <global::UIKit.UIView> (global::ApiDefinition.Messaging.IntPtr_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("playerViewPreferredInitialLoadingView:"), playerView.Handle)));
 }