Compartir a través de


BotConfiguration.DisconnectServiceByNameOrId Método

Definición

Sobrecargas

DisconnectServiceByNameOrId(String)

Quite un servicio por su nombre o identificador.

DisconnectServiceByNameOrId<T>(String)

Quite un tipo específico de servicio por su nombre o identificador.

DisconnectServiceByNameOrId(String)

Quite un servicio por su nombre o identificador.

public Microsoft.Bot.Configuration.ConnectedService DisconnectServiceByNameOrId (string nameOrId);
member this.DisconnectServiceByNameOrId : string -> Microsoft.Bot.Configuration.ConnectedService
Public Function DisconnectServiceByNameOrId (nameOrId As String) As ConnectedService

Parámetros

nameOrId
String

Nombre o identificador de servicio.

Devoluciones

que ConnectedService se encontró y quitó.

Excepciones

No se encontró este servicio.

Se aplica a

DisconnectServiceByNameOrId<T>(String)

Quite un tipo específico de servicio por su nombre o identificador.

public T DisconnectServiceByNameOrId<T> (string nameOrId) where T : Microsoft.Bot.Configuration.ConnectedService;
member this.DisconnectServiceByNameOrId : string -> 'T (requires 'T :> Microsoft.Bot.Configuration.ConnectedService)
Public Function DisconnectServiceByNameOrId(Of T As ConnectedService) (nameOrId As String) As T

Parámetros de tipo

T

El tipo de servicio.

Parámetros

nameOrId
String

Nombre o identificador de servicio.

Devoluciones

T

que ConnectedService se encontró y quitó.

Excepciones

No se encontró este servicio.

Se aplica a