Interface IPlatformTransport
The transport interface that feeds in the data to platform and process the output.
Namespace: Microsoft.Bot.Builder.Enterprise.Transport
Assembly: Microsoft.Bot.Builder.Enterprise.dll
Syntax
public interface IPlatformTransport
  Methods
View SourceSendOutboundRequestAsync(IPlatformRequest)
Sends the outbound request from the platform to the server and return the response to SDK.
Declaration
Task<IPlatformResponse> SendOutboundRequestAsync(IPlatformRequest request)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IPlatformRequest | request | The request to be sent to the server.  | 
      
Returns
| Type | Description | 
|---|---|
| System.Threading.Tasks.Task<IPlatformResponse> | The response from the server  |