Luz.Net.WebRtcNetwork.Dispose C# (CSharp) Method

Dispose() public method

Disposes the underlaying java script library. If you have long running systems that don't reuse instances make sure you always call dispose as unity doesn't seem to call destructors reliably. You might fill up your java script memory with lots of unused instances.
public Dispose ( ) : void
return void
        public void Dispose()
        {
            Dispose(true);
            GC.SuppressFinalize(this);
        }

Same methods

WebRtcNetwork::Dispose ( bool disposing ) : void