Beispiel #1
0
        /// <summary>
        /// Provide a method that implements <c>OnInviteButtonClick</c> delegate if you would like to customize the behavior when the user clicks on the Invite Button.
        /// Return true if action was handled by the app. Return false for default GetSocial behavior.
        /// </summary>
        public void SetOnInviteButtonClickListener(OnInviteButtonClick onInviteButtonClick)
        {
            Check.Argument.IsNotNull(onInviteButtonClick, "onInviteButtonClick", "Listener cannot be null");

            getSocialImpl.SetOnInviteButtonClickListener(onInviteButtonClick);
        }