AsymmetricAlgorithm.ImportFromPem(ReadOnlySpan<Char>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, imports an RFC 7468 textually encoded key, replacing the keys for this object.
public:
virtual void ImportFromPem(ReadOnlySpan<char> input);
public virtual void ImportFromPem (ReadOnlySpan<char> input);
abstract member ImportFromPem : ReadOnlySpan<char> -> unit
override this.ImportFromPem : ReadOnlySpan<char> -> unit
Public Overridable Sub ImportFromPem (input As ReadOnlySpan(Of Char))
Parameters
- input
- ReadOnlySpan<Char>
The text of the PEM key to import.
Exceptions
A derived type has not overridden this member.
input
does not contain a PEM-encoded key with a recognized label.
-or-
input
contains multiple PEM-encoded keys with a recognized label.
-or-
input
contains an encrypted PEM-encoded key.
Remarks
Because each algorithm may have algorithm-specific PEM labels, the default behavior will throw NotImplementedException.