Discuss this help topic in SecureBlackbox Forum

TElMessagePartHandlerSMime.Errors

TElMessagePartHandlerSMime     See also     


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


This read-only property specifies, what kinds of errors were encountered during processing.

Declaration

[C#/Java]
    TElSMimeErrors Errors;
    
    TElSMimeErrors = SmallInt;
    
    TElSMimeErrors represents a bit mask which contains zero or more bit flags as defined by TElSMimeError
    

[VB.NET]
    Property Errors As TElSMimeErrors
    
    TElSMimeErrors As SmallInt
    
    TElSMimeErrors represents a bit mask which contains zero or more bit flags as defined by TElSMimeError
    

[Pascal]
    property Errors :TElSMimeErrors;
    TElSMimeErrors = set of TElSMimeError;

[C++]
    TElSMimeErrors get_Errors();

[PHP]
    integer get_Errors()

Values


Description

    This property specifies zero or more errors that occured during processing of the message or message part.
     Note, Errors property values differ in VCL and .NET versions. If several errors occur in .NET, they will be represented as a bitwise sum. For example if smeNotFoundSignaturePart and smeNotFoundBodyPart errors occurred , the value of the property is 6 (smeNotFoundSignaturePart = 2, smeNotFoundBodyPart = 4).

See also:     DecoderSignIsCorrectly    

Discuss this help topic in SecureBlackbox Forum