PemEncoding.TryFind(ReadOnlySpan<Char>, PemFields) 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.
Attempts to find the first PEM-encoded data.
public:
static bool TryFind(ReadOnlySpan<char> pemData, [Runtime::InteropServices::Out] System::Security::Cryptography::PemFields % fields);
public static bool TryFind (ReadOnlySpan<char> pemData, out System.Security.Cryptography.PemFields fields);
static member TryFind : ReadOnlySpan<char> * PemFields -> bool
Public Shared Function TryFind (pemData As ReadOnlySpan(Of Char), ByRef fields As PemFields) As Boolean
Parameters
- pemData
- ReadOnlySpan<Char>
The text containing the PEM-encoded data.
- fields
- PemFields
When this method returns, contains a value that specifies the location, label, and data location of the encoded data; or, if no PEM-encoded data is found, a value that specifies those locations as empty.
This parameter is treated as uninitialized.
Returns
true
if PEM-encoded data was found; otherwise false
.
Remarks
IETF RFC 7468 permits different decoding rules. This method always uses lax rules.