Class Intents.IntentsBase (1.7.0)

[BindServiceMethod(typeof(Intents), "BindService")]
public abstract class IntentsBase

Base class for server-side implementations of Intents

Inheritance

Object > Intents.IntentsBase

Namespace

Google.Cloud.Dialogflow.Cx.V3

Assembly

Google.Cloud.Dialogflow.Cx.V3.dll

Methods

CreateIntent(CreateIntentRequest, ServerCallContext)

public virtual Task<Intent> CreateIntent(CreateIntentRequest request, ServerCallContext context)

Creates an intent in the specified agent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
NameDescription
requestCreateIntentRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Intent>

The response to send back to the client (wrapped by a task).

DeleteIntent(DeleteIntentRequest, ServerCallContext)

public virtual Task<Empty> DeleteIntent(DeleteIntentRequest request, ServerCallContext context)

Deletes the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
NameDescription
requestDeleteIntentRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Empty>

The response to send back to the client (wrapped by a task).

GetIntent(GetIntentRequest, ServerCallContext)

public virtual Task<Intent> GetIntent(GetIntentRequest request, ServerCallContext context)

Retrieves the specified intent.

Parameters
NameDescription
requestGetIntentRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Intent>

The response to send back to the client (wrapped by a task).

ListIntents(ListIntentsRequest, ServerCallContext)

public virtual Task<ListIntentsResponse> ListIntents(ListIntentsRequest request, ServerCallContext context)

Returns the list of all intents in the specified agent.

Parameters
NameDescription
requestListIntentsRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<ListIntentsResponse>

The response to send back to the client (wrapped by a task).

UpdateIntent(UpdateIntentRequest, ServerCallContext)

public virtual Task<Intent> UpdateIntent(UpdateIntentRequest request, ServerCallContext context)

Updates the specified intent.

Note: You should always train a flow prior to sending it queries. See the training documentation.

Parameters
NameDescription
requestUpdateIntentRequest

The request received from the client.

contextServerCallContext

The context of the server-side call handler being invoked.

Returns
TypeDescription
Task<Intent>

The response to send back to the client (wrapped by a task).