Sub PostString(JobName As String, URL As String, Text As String, ContentType As String)
PostBytes(JobName, URL, Text.GetBytes("UTF8"), ContentType)
End Sub
Sub PostBytes(JobName As String, URL As String, Data() As Byte, ContentType As String)
If internalCheckIfCanStart(JobName) = False Then Return
HttpUtilsService.PostInputStream = Null
HttpUtilsService.PostBytes = Data
HttpUtilsService.ContentType = ContentType
Tasks = Array As String(URL)
HttpUtilsService.Post = True
StartService(HttpUtilsService)
End Sub