Sets custom post fields. String should contain name value pairs delimited by '|', name from value delimited by ';' sign.
Namespace: ElementIT.UltimateUploaderAssembly: ElementIT.UltimateUploader (in ElementIT.UltimateUploader.dll) Version: 1.6.0.18556 (1.6.0)
Syntax
| C# |
|---|
public string CustomPostFields { get; set; } |
| Visual Basic |
|---|
Public Property CustomPostFields As String Get Set |
| Visual C++ |
|---|
public: property String^ CustomPostFields { String^ get (); void set (String^ value); } |
Field Value
Custom post fields.
Remarks
| - splitter for pairs
; - splitter for name and value
Please note: Characters | and ; inside a parameter name or a value should be encoded with corresponding %7C and %3B. You should also encode & character with %26 code.
Examples
paramname1;paramvalue1|paramname2;paramvalue2