AsymmetricAlgorithm.TryExportSubjectPublicKeyInfo Method

Definition

When overridden in a derived class, attempts to export the current key in the X.509 SubjectPublicKeyInfo format into a provided buffer.

C#
public virtual bool TryExportSubjectPublicKeyInfo(Span<byte> destination, out int bytesWritten);

Parameters

destination
Span<Byte>

The byte span to receive the X.509 SubjectPublicKeyInfo data.

bytesWritten
Int32

When this method returns, contains a value that indicates the number of bytes written to destination. This parameter is treated as uninitialized.

Returns

true if destination is big enough to receive the output; otherwise, false.

Exceptions

The key could not be exported.

A derived type has not overriden this member.

Remarks

Because algorithm-specific support is required to produce this data format, TryExportSubjectPublicKeyInfo throws a NotImplementedException by default.

Applies to

Tuote Versiot
.NET Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Standard 2.1

See also