ChatterBox.Client.Win8dot1.Voip.Hub.OnVoipState C# (CSharp) Method

OnVoipState() public method

public OnVoipState ( VoipState voipState ) : void
voipState ChatterBox.Client.Common.Communication.Foreground.Dto.VoipState
return void
        public void OnVoipState(VoipState voipState)
        {
            if (_foregroundChannel == null)
            {
                _foregroundChannel = _container.Resolve<IForegroundChannel>();
            }
            _foregroundChannel.OnVoipState(voipState);
        }