Discuss this help topic in SecureBlackbox Forum

TElMessagePartHandler.DecodedPart

TElMessagePartHandler     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Points to the decoded message part.

Declaration

[C#]
    TElMessagePart DecodedPart;

[VB.NET]
    Property DecodedPart As TElMessagePart

[Pascal]
    property DecodedPart : TElMessagePart;

[C++]
    TElMessagePart* get_DecodedPart();
    void set_DecodedPart(TElMessagePart &Value);
    void set_DecodedPart(TElMessagePart *Value);

[PHP]
    TElMessagePart get_DecodedPart()
    void set_DecodedPart(TElMessagePart $Value)

[Java]
    TElMessagePart getDecodedPart();
    void setDecodedPart(TElMessagePart Value);

Description

    Handler can convert message part into another one during parsing. If this happens, DecodedPart property will point to such decoded message part.
    For example: after decryption of encrypted message this property will contain decoded message part.

See also:     Decode    

Discuss this help topic in SecureBlackbox Forum