StreamingRequest class
透過 Bot Framework 通訊協定 3 傳送的基本要求類型,具有串流延伸模組傳輸,相當於 HTTP 要求訊息。
屬性
path | 要求路徑;回應上的 null。 |
streams | 相關聯的數據流清單。 |
verb | 要求動詞,回應時為 null。 |
方法
add |
將新的數據流附件新增至此串流要求。 |
create(string, string, Http |
使用傳入的方法、路徑和本文,建立串流要求。 |
set |
設定這個 streamingRequest 主體的內容。 |
屬性詳細資料
path
要求路徑;回應上的 null。
path: string
屬性值
string
streams
verb
要求動詞,回應時為 null。
verb: string
屬性值
string
方法詳細資料
addStream(HttpContent)
將新的數據流附件新增至此串流要求。
function addStream(content: HttpContent)
參數
- content
- HttpContent
要包含在新數據流附件中的 Http 內容。
create(string, string, HttpContent)
使用傳入的方法、路徑和本文,建立串流要求。
static function create(method: string, path?: string, body?: HttpContent): StreamingRequest
參數
- method
-
string
要用於此要求的 HTTP 動詞。
- path
-
string
可在遠端伺服器上找到資源的選擇性路徑。
- body
- HttpContent
要傳送至遠端伺服器的選擇性本文。
傳回
成功時會傳回具有適當狀態代碼和本文的串流要求。
setBody(any)
設定這個 streamingRequest 主體的內容。
function setBody(body: any)
參數
- body
-
any
要寫入 streamingRequest 本文的 JSON 文字。