transferred_data_limit Property

The maximum of bytes of data to be transferred.

Syntax

def get_transferred_data_limit() -> int: ...
def set_transferred_data_limit(value: int) -> None: ...

transferred_data_limit = property(get_transferred_data_limit, set_transferred_data_limit)

Default Value

0

Remarks

This property defines the maximum of bytes of data to be transferred. The default value is 0, which means there is no limit to the amount of data the class will accumulate and parse. If this value is set to a number n which is greater than 0, the class will only receive the first n bytes of data from the server.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 Python Edition - Version 20.0 [Build 8307]