BitSharper.EcKey.GetPrivateKeyEncoded C# (CSharp) Метод

GetPrivateKeyEncoded() публичный Метод

Exports the private key in the form used by the Satoshi client "dumpprivkey" and "importprivkey" commands. Use the DumpedPrivateKey.ToString method to get the string.
public GetPrivateKeyEncoded ( NetworkParameters @params ) : DumpedPrivateKey
@params NetworkParameters
Результат DumpedPrivateKey
        public DumpedPrivateKey GetPrivateKeyEncoded(NetworkParameters @params)
        {
            return new DumpedPrivateKey(@params, GetPrivKeyBytes());
        }