/// <summary> /// Sets the UI action listener. It allows you to track actions done by users while using GetSocial UI. /// Also, you can allow or disallow users to perform some action. To perform an action, in UI action listener call /// pendingAction(). Without calling it, action won't be invoked. /// If you don't set a listener, all actions will be performed. /// </summary> /// <param name="listener">Listener instance</param> /// <returns>Instance of Builder to chain calls</returns> public T SetUiActionListener(UiActionListener listener) { _uiActionListener = listener; return((T)this); }
public UiActionListenerProxy(UiActionListener uiActionListener) : base("im.getsocial.sdk.ui.UiActionListener") { _uiActionListener = uiActionListener; }