It seems that syncfusion never reports a metadata with the key name type
When we open the attahed pdf with Acrobat PRO, and Menu File, Properties and hoose the Custom tab, we see 2 metadata
(see also attached png)
Find attached a pdf with 2 custom metadata: Test and Type
The following code will trigger an assert, and only Test is listed
dim SF as Syncfusion.Pdf.Parsing.PdfLoadedDocument= New Syncfusion.Pdf.Parsing.PdfLoadedDocument(sfilename)
Debug.Assert(SF.DocumentInformation.CustomMetadata().Count == 2)
for each kvp as KeyValuePair(Of String, Of String) in SF.DocumentInformation.CustomMetadata()
Debug.Print(kvp.key+".."+kvp.value)
next kvp
However, if I inspect the SF.DocumentInformation.CustomMetadata,
I can see that Type is amongst the key in the Dictionnary but is not exposed for some reason.
Attachment:
20181024_12h59_44_a73e61fb.zip