Ejemplo n.º 1
0
 public CustomTabsCallbackImpl(OnNavigationEventDelegate onNavigationEventHandler, ExtraCallbackDelegate extraCallbackHandler)
 {
     this.onNavigationEventHandler = onNavigationEventHandler;
     this.extraCallbackHandler     = extraCallbackHandler;
 }
Ejemplo n.º 2
0
 public CustomTabsCallbackImpl(OnNavigationEventDelegate onNavigationEventHandler)
 {
     this.onNavigationEventHandler = onNavigationEventHandler;
 }
Ejemplo n.º 3
0
 public CustomTabsSession NewSession(OnNavigationEventDelegate callback)
 {
     return(NewSession(new CustomTabsCallbackImpl(callback)));
 }
Ejemplo n.º 4
0
 public CustomTabsSession NewSession(OnNavigationEventDelegate onNavigationEventHandler, ExtraCallbackDelegate extraCallbackHandler)
 {
     return(NewSession(new CustomTabsCallbackImpl(onNavigationEventHandler, extraCallbackHandler)));
 }
Ejemplo n.º 5
0
 public CustomTabsCallbackImpl(OnNavigationEventDelegate callback)
 {
     this.callback = callback;
 }