WitMessageVRequest
(
configuration
, requestId
)
|
Constructor that takes in configuration and request id
Signature
Meta.WitAi.Requests.WitMessageVRequest.WitMessageVRequest(IWitRequestConfiguration configuration, string requestId) Parameters configuration: IWitRequestConfigurationrequestId: string |
MessageRequest
(
endpoint
, post
, text
, urlParameters
, onPartial
)
| Voice message request
Signature
Task<VRequestResponse<string> > Meta.WitAi.Requests.WitMessageVRequest.MessageRequest(string endpoint, bool post, string text, Dictionary< string, string > urlParameters, Action< string > onPartial=null) Parameters endpoint: stringÂ
Endpoint to be used for possible overrides
post: boolÂ
Will perform a POST if true, will perform a GET otherwise
text: stringÂ
Text to be sent to message endpoint
urlParameters: Dictionary< string, string >Â
Parameters to be sent to the endpoint
onPartial: Action< string >Returns Task< VRequestResponse< string > > |