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

            getSocialImpl.SetOnAppAvatarClickListener(onAppAvatarClick);
        }