Discuss this help topic in SecureBlackbox Forum

TElMultipartFormData.Parse

TElMultipartFormData     See also     


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


Parses form data from buffer.

Declaration

[C#]
    void Parse(byte[] Buffer, int Index, int Size);

[VB.NET]
    Sub Parse(ByVal Buffer As Byte(), ByVal Index As Integer, ByVal Size As Integer)

[Pascal]
    procedure Parse(const Buffer : ByteArray; Index, Size : integer);

[C++]
    void Parse(const std::vector<uint8_t> &Buffer, int32_t Index, int32_t Size);

[PHP]
    void Parse(array of byte|string|NULL $Buffer, integer $Index, integer $Size)

[Java]
    void parse(byte[] Buffer, int Index, int Size);

Parameters

  • Buffer - buffer containing the form data.
  • Index - specifies the position in Buffer from which to start reading the form data.
  • Size - size of the data to be read in bytes.

Description

    Use this method to parse form data from buffer.

See also:     Content     Headers    

Discuss this help topic in SecureBlackbox Forum