...
Enables HTTP authentication using the specified user name and password. Note that HTTP basic authentication is deliberately disabled due to it being inherently insecure. HTTP digest authentication is supported.
SetMaximumReceiveBytesPerSecond(bytes_per_second as Double) As Boolean
Limits the rate at which downloads are performed by the roUrlTransfer instance. The source data rate isn't under the direct control of the BrightSign player, but download rates should average below the specified value over time.
This method returns true
on success and false
on failure. In event of failure, the GetFailureReason()
method may provide more information.
SetMaximumSendBytesPerSecond(bytes_per_second as Double) As Boolean
Limits the rate at which uploads are performed by the roUrlTransfer instance.
This method returns true
on success and false
on failure. In event of failure, the GetFailureReason()
method may provide more information.
SetMinimumTransferRate(bytes_per_second As Integer, period_in_seconds As Integer) As Boolean
...
Performs a synchronous HTTP method request using the specified parameters. If the request is started successfully, then the method returns an roUrlEvent object containing the results of the request. This method returns Invalid if the the request could not be started. In In this case, the the GetFailureReason()
method may provide more information.
...