Discuss this help topic in SecureBlackbox Forum

TElSMTPClient.BinaryChunkSize

TElSMTPClient     See also     


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


Specifies sizes of the "chunks" into which all messages are divided for sending in binary mode.

Declaration

[C#]
    int BinaryChunkSize;

[VB.NET]
    Property BinaryChunkSize As Integer

[Pascal]
    property BinaryChunkSize : integer;

[C++]
    int32_t get_BinaryChunkSize();
    void set_BinaryChunkSize(int32_t Value);

[PHP]
    integer get_BinaryChunkSize()
    void set_BinaryChunkSize(integer $Value)

[Java]
    int getBinaryChunkSize();
    void setBinaryChunkSize(int Value);

Description

    If the ExtensionBinarySupported and ExtensionChunkingSupported properties are true, all messages are sent in binary mode divided into separate parts. BinaryChunkSize specifies the size of each such part. The default value is 65535.

See also:     ExtensionBinarySupported     ExtensionChunkingSupported    

Discuss this help topic in SecureBlackbox Forum