ICallingBotService.ProcessCallback(String, Task<Stream>) Method

Definition

Method responsible for processing the data sent with POST request to callback URL

public string ProcessCallback (string content, System.Threading.Tasks.Task<System.IO.Stream> additionalData);
abstract member ProcessCallback : string * System.Threading.Tasks.Task<System.IO.Stream> -> string
Public Function ProcessCallback (content As String, additionalData As Task(Of Stream)) As String

Parameters

content
String

The content of request

additionalData
Task<Stream>

The remaining part of request in case of multi part request

Returns

String

Returns the response that should be sent to the sender of POST request

Applies to