System.Net.Security.Tests.SslStreamSystemDefaultTest.TestBase.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
            public void Dispose()
            {
                if (_clientStream != null)
                {
                    _clientStream.Dispose();
                }

                if (_serverStream != null)
                {
                    _serverStream.Dispose();
                }
            }
        }