Gets or sets a sequence of characters used to separate strings stored in one metadata field (such as IptcKeyword).
Namespace:
Aurigma.ImageUploader
Assembly:
Aurigma.ImageUploader (in Aurigma.ImageUploader.dll)
public string ValueSeparator { get; set; }
Type: System..String
The sequence of characters used to separate strings stored in one metadata field.
Default value is " ".
Some metadata fields like IptcKeyword can contain multiple string values. Suppose, you upload an image which contains several
keywords: portrait
, old photo
, black and white
. All these keywords are stored in one IptcKeyword field. If
you specified this field for upload (using the Iptc property) the IptcKeyword_0
POST field will contain all these
keywords gathered into one string separated with this property value. For example, if you set it to the ";"
you will get the "portrait;old photo;black and
white"
POST field value.