コード例 #1
0
ファイル: Example.cs プロジェクト: 89sos98/monodroid-samples
		/**
     * Remove the given listener from the list of those that will be notified
     * when logout occurs.
     * 
     * @param listener
     *            The callback object for notifying the application when log out
     *            starts and finishes.
     */
		public static void RemoveLogoutListener (ILogoutListener listener)
		{
			mLogoutListeners.Remove (listener);
		}
コード例 #2
0
 /**
  * Remove the given listener from the list of those that will be notified
  * when logout occurs.
  *
  * @param listener
  *            The callback object for notifying the application when log out
  *            starts and finishes.
  */
 public static void RemoveLogoutListener(ILogoutListener listener)
 {
     mLogoutListeners.Remove(listener);
 }
コード例 #3
0
ファイル: Example.cs プロジェクト: 89sos98/monodroid-samples
		/**
     * Associate the given listener with this Facebook object. The listener's
     * callback interface will be invoked when logout occurs.
     * 
     * @param listener
     *            The callback object for notifying the application when log out
     *            starts and finishes.
     */
		public static void AddLogoutListener (ILogoutListener listener)
		{
			mLogoutListeners.AddLast (listener);
		}
コード例 #4
0
 /**
  * Associate the given listener with this Facebook object. The listener's
  * callback interface will be invoked when logout occurs.
  *
  * @param listener
  *            The callback object for notifying the application when log out
  *            starts and finishes.
  */
 public static void AddLogoutListener(ILogoutListener listener)
 {
     mLogoutListeners.AddLast(listener);
 }