コード例 #1
0
    public vx_evt_participant_removed_t as_vx_evt_participant_removed()
    {
        global::System.IntPtr        cPtr = VivoxCoreInstancePINVOKE.vx_evt_base_t_as_vx_evt_participant_removed(swigCPtr);
        vx_evt_participant_removed_t ret  = (cPtr == global::System.IntPtr.Zero) ? null : new vx_evt_participant_removed_t(cPtr, false);

        return(ret);
    }
コード例 #2
0
ファイル: ChannelSession.cs プロジェクト: pyr53540/vivox
        private void HandleParticipantRemoved(vx_evt_base_t eventMessage)
        {
            vx_evt_participant_removed_t evt = eventMessage;

            Debug.Assert(evt != null);
            if (evt.session_handle != _sessionHandle)
            {
                return;
            }
            _participants.Remove(evt.participant_uri);
        }
コード例 #3
0
 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(vx_evt_participant_removed_t obj)
 {
     return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr);
 }