protected override void PropertyParser(
string propertyName,
StringCollection parameters,
string propertyValue
)
Protected Overrides Sub PropertyParser (
propertyName As String,
parameters As StringCollection,
propertyValue As String
)
protected:
virtual void PropertyParser(
String^ propertyName,
StringCollection^ parameters,
String^ propertyValue
) override
abstract PropertyParser :
propertyName : string *
parameters : StringCollection *
propertyValue : string -> unit
override PropertyParser :
propertyName : string *
parameters : StringCollection *
propertyValue : string -> unit
There may be a mixture of name/value pairs or values alone in the parameters string collection. It is up to the derived class to process the parameter list based on the specification to which it conforms. For entries that are parameter names, the entry immediately following it in the collection is its associated parameter value. The property name, parameter names, and their values may be in upper, lower, or mixed case.
The value may be an encoded string. The properties are responsible for any decoding that may need to occur (i.e. base 64 encoded image data).
PDIParserException | This is thrown if an error is encountered while parsing the data stream. Refer to the and inner exceptions for information on the cause of the problem. |