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

OnUpdateFrameFormat() public method

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