Discuss this help topic in SecureBlackbox Forum

TElDomainKeysVerifier.ProcessHeader

TElDomainKeysVerifier     See also     


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


Processes massage header, selects and parses signatures.

Declaration

[C#]
    int ProcessHeader(TElStringList Header);
    int ProcessHeader(string Source);

[VB.NET]
    Function ProcessHeader(ByVal Header As TElStringList) As Integer
    Function ProcessHeader(ByVal Source As String) As Integer

[Pascal]
    function ProcessHeader(Header: TStrings): Integer;
    function ProcessHeader(Source: AnsiString): Integer;

[C++]
    int32_t ProcessHeader(TStrings &Header);
    int32_t ProcessHeader(TStrings *Header);
    int32_t ProcessHeader(const std::string &Source);

[PHP]
    integer ProcessHeader(TStrings $Header)
    integer ProcessHeader(string $Source)

[Java]
    int processHeader(String Source);
    int processHeader(TElStringList Header);

Parameters

  • Header - the list of strings, which form a message header. The list must include the ending empty line, which separates message body from the header.
  • Source - message header written as one string

Return value

    Error code.

Values of error codes:

Description

    Use this method to process message signatures.

See also:     ProcessBodyLine     ProcessMessage    

Discuss this help topic in SecureBlackbox Forum