LogoProperty
This class represents the "LOGO" property
This class should be called with two arguments, the first an array of the parameters, and the second the value of the property
The only acceptable parameters of
LogoProperty
areValueParameter
,LanguageParameter
,PIDParameter
, PrefParameter,TypeParameter
,MediatypeParameter
,AltidParameter
andAnyParameter
If you do not wish that the property have any parameters, leave the first argument array empty
The value of
LogoProperty
should be of typeURIType
new LogoProperty(
[],
new URIType("http://www.example.com/pub/logos/abccorp.jpg"),
);
new LogoProperty(
[],
new URIType(
"data:image/jpeg;base64,MIICajCCAdOgAwIBAgICBEUwDQYJKoZIhvcAQEEBQAwdzELMAkGA1UEBhMCVVMxLDAqBgNVBAoTI05ldHNjYXBlIENvbW11bmljYXRpb25zIENvcnBvcmF0aW9uMRwwGgYDVQQLExNJbmZvcm1hdGlvbiBTeXN0",
),
);