WebRtc.NET icon indicating copy to clipboard operation
WebRtc.NET copied to clipboard

Windows 7 End call not working

Open suravi999 opened this issue 8 years ago • 2 comments

I have build staging branch on windows7. everything working fine.

I have implemented end call function like this

`public void endCall() {

            foreach (var s in Streams)
            {
                if (!s.Value.Cancel.IsCancellationRequested)
                {
                    s.Value.Cancel.Cancel();
                }
            }

            server.Dispose();
            Streams.Clear();
        
    }` 

but I'm getting access violation issue.

Please refer bellow image, How to fix this issue? capture

suravi999 avatar Feb 04 '18 02:02 suravi999

@radioman any idea about this issue

suravi999 avatar Feb 04 '18 03:02 suravi999

I have the same problem

Rendtime avatar Apr 23 '21 02:04 Rendtime