Discuss this help topic in SecureBlackbox Forum

TElClientSocketBinding.PortRangeFrom

TElClientSocketBinding     See also     


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


Specifies the lower range of ports to bind the outgoing socket to.

Declaration

[C#]
    int PortRangeFrom;

[VB.NET]
    Property PortRangeFrom As Integer

[Pascal]
    property PortRangeFrom : integer;

[C++]
    int32_t get_PortRangeFrom();
    void set_PortRangeFrom(int32_t Value);

[PHP]
    integer get_PortRangeFrom()
    void set_PortRangeFrom(integer $Value)

[Java]
    int getPortRangeFrom();
    void setPortRangeFrom(int Value);

Description

    Use this property to specify the lower range of ports to bind the outgoing socket to. The upper range is specified by PortRangeTo. If these properties are set, the socket is bound to any free port in this range (including PortRangeFrom and PortRangeTo values).

See also:     PortRangeTo    

Discuss this help topic in SecureBlackbox Forum