Base PropertyEncoding String Property
Set or get the encoding method for this property's value as a string
Definition
Namespace: EWSoftware.PDI.Properties
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
This defines how the value of the property is encoded. If not set, it defaults to 7-bit ASCII encoding. The value passed to the property is not case-sensitive.
Assembly: EWSoftware.PDI.Data (in EWSoftware.PDI.Data.dll) Version: 2025.1.9.0
C#
public string EncodingString { get; set; }VB
Public Property EncodingString As String
Get
SetC++
public:
property String^ EncodingString {
String^ get ();
void set (String^ value);
}F#
member EncodingString : string with get, setProperty Value
StringThis defines how the value of the property is encoded. If not set, it defaults to 7-bit ASCII encoding. The value passed to the property is not case-sensitive.
Exceptions
| ArgumentException | This is thrown if the value is not set to 7BIT, 8BIT, QUOTED-PRINTABLE, BASE64, B, or a value starting with "X-" to indicate a custom type. |