Renci.SshNet.Security.DsaKey.Dispose C# (CSharp) Method

Dispose() public method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
return void
        public void Dispose()
        {
            Dispose(true);
            GC.SuppressFinalize(this);
        }

Same methods

DsaKey::Dispose ( bool disposing ) : void

Usage Example

コード例 #1
0
ファイル: DsaKeyTest.cs プロジェクト: pecegit/sshnet
 public void DisposeTest()
 {
     DsaKey target = new DsaKey(); // TODO: Initialize to an appropriate value
     target.Dispose();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }