[BindServiceMethod(typeof(Sessions), "BindService")]
public abstract class SessionsBaseBase class for server-side implementations of Sessions
Namespace
Google.Cloud.Dialogflow.V2Assembly
Google.Cloud.Dialogflow.V2.dll
Methods
DetectIntent(DetectIntentRequest, ServerCallContext)
public virtual Task<DetectIntentResponse> DetectIntent(DetectIntentRequest request, ServerCallContext context)Processes a natural language query and returns structured, actionable data as a result. This method is not idempotent, because it may cause contexts and session entity types to be updated, which in turn might affect results of future queries.
Note: Always use agent versions for production traffic. See Versions and environments.
| Parameters | |
|---|---|
| Name | Description | 
| request | DetectIntentRequestThe request received from the client. | 
| context | ServerCallContextThe context of the server-side call handler being invoked. | 
| Returns | |
|---|---|
| Type | Description | 
| Task<DetectIntentResponse> | The response to send back to the client (wrapped by a task). | 
StreamingDetectIntent(IAsyncStreamReader<StreamingDetectIntentRequest>, IServerStreamWriter<StreamingDetectIntentResponse>, ServerCallContext)
public virtual Task StreamingDetectIntent(IAsyncStreamReader<StreamingDetectIntentRequest> requestStream, IServerStreamWriter<StreamingDetectIntentResponse> responseStream, ServerCallContext context)Processes a natural language query in audio format in a streaming fashion and returns structured, actionable data as a result. This method is only available via the gRPC API (not REST).
Note: Always use agent versions for production traffic. See Versions and environments.
| Parameters | |
|---|---|
| Name | Description | 
| requestStream | IAsyncStreamReader<StreamingDetectIntentRequest>Used for reading requests from the client. | 
| responseStream | IServerStreamWriter<StreamingDetectIntentResponse>Used for sending responses back to the client. | 
| context | ServerCallContextThe context of the server-side call handler being invoked. | 
| Returns | |
|---|---|
| Type | Description | 
| Task | A task indicating completion of the handler. |