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

OnUpdateFrameRate() public method

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