ECDsa.TryExportSubjectPublicKeyInfo(Span<Byte>, Int32) Método
Definição
Tenta exportar a chave atual no formato SubjectPublicKeyInfo X.509 para um buffer fornecido.Attempts to export the current key in the X.509 SubjectPublicKeyInfo format into a provided buffer.
public:
override bool TryExportSubjectPublicKeyInfo(Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public override bool TryExportSubjectPublicKeyInfo (Span<byte> destination, out int bytesWritten);
override this.TryExportSubjectPublicKeyInfo : Span<byte> * int -> bool
Public Overrides Function TryExportSubjectPublicKeyInfo (destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean
Parâmetros
O intervalo de bytes que receberá os dados de SubjectPublicKeyInfo X.509.The byte span to receive the X.509 SubjectPublicKeyInfo data.
- bytesWritten
- Int32
Quando é retornado, este método contém um valor que indica o número de caracteres gravados em destination.When this method returns, contains a value that indicates the number of bytes written to destination. Esse parâmetro é tratado como não inicializado.This parameter is treated as uninitialized.
Retornos
true se destination for grande o suficiente para receber a saída; caso contrário, false.true if destination is big enough to receive the output; otherwise, false.
Exceções
Não é possível exportar a chave.The key could not be exported.