WebPubSubServiceClient.SendToUserAsync Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
SendToUserAsync(String, String, ContentType) |
Enviar mensagem para o usuário específico. |
SendToUserAsync(String, RequestContent, ContentType, RequestContext) |
Enviar conteúdo dentro do corpo da solicitação para o usuário específico. |
SendToUserAsync(String, RequestContent, ContentType, String, RequestContext) |
Enviar conteúdo dentro do corpo da solicitação para o usuário específico. |
SendToUserAsync(String, String, ContentType)
- Origem:
- WebPubSubServiceClient.cs
Enviar mensagem para o usuário específico.
public virtual System.Threading.Tasks.Task<Azure.Response> SendToUserAsync (string userId, string content, Azure.Core.ContentType contentType = default);
abstract member SendToUserAsync : string * string * Azure.Core.ContentType -> System.Threading.Tasks.Task<Azure.Response>
override this.SendToUserAsync : string * string * Azure.Core.ContentType -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function SendToUserAsync (userId As String, content As String, Optional contentType As ContentType = Nothing) As Task(Of Response)
Parâmetros
- userId
- String
A ID do usuário.
- content
- String
- contentType
- ContentType
O padrão é ContentType.PlainText.
Retornos
Um Response se tiver êxito.
Aplica-se a
SendToUserAsync(String, RequestContent, ContentType, RequestContext)
- Origem:
- WebPubSubServiceClient.cs
Enviar conteúdo dentro do corpo da solicitação para o usuário específico.
public virtual System.Threading.Tasks.Task<Azure.Response> SendToUserAsync (string userId, Azure.Core.RequestContent content, Azure.Core.ContentType contentType, Azure.RequestContext context);
abstract member SendToUserAsync : string * Azure.Core.RequestContent * Azure.Core.ContentType * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.SendToUserAsync : string * Azure.Core.RequestContent * Azure.Core.ContentType * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function SendToUserAsync (userId As String, content As RequestContent, contentType As ContentType, context As RequestContext) As Task(Of Response)
Parâmetros
- userId
- String
A ID do usuário.
- content
- RequestContent
O conteúdo a ser enviado como o corpo da solicitação. Os detalhes do esquema do corpo da solicitação estão na seção Comentários abaixo.
- contentType
- ContentType
Carregar tipo de arquivo. Valores permitidos: "application/json" | "application/octet-stream" | "texto/sem formatação".
- context
- RequestContext
O contexto de solicitação, que pode substituir os comportamentos padrão do pipeline do cliente por chamada.
Retornos
A resposta retornada do serviço.
Exceções
userId
ou content
é nulo.
userId
é uma cadeia de caracteres vazia e era esperado que não estivesse vazio.
O serviço retornou um código de status sem êxito.
Exemplos
Este exemplo mostra como chamar SendToUserAsync com os parâmetros necessários e o conteúdo da solicitação.
var client = new WebPubSubServiceClient("<https://my-service.azure.com>", "<hub>");
var data = File.OpenRead("<filePath>");
Response response = await client.SendToUserAsync("<userId>", RequestContent.Create(data), ContentType.ApplicationOctetStream);
Console.WriteLine(response.Status);
Comentários
Esquema para Response Error
:
{
code: string,
message: string,
target: string,
details: [ErrorDetail],
inner: {
code: string,
inner: InnerError
}
}
Aplica-se a
SendToUserAsync(String, RequestContent, ContentType, String, RequestContext)
- Origem:
- WebPubSubServiceClient.cs
Enviar conteúdo dentro do corpo da solicitação para o usuário específico.
public virtual System.Threading.Tasks.Task<Azure.Response> SendToUserAsync (string userId, Azure.Core.RequestContent content, Azure.Core.ContentType contentType, string filter = default, Azure.RequestContext context = default);
abstract member SendToUserAsync : string * Azure.Core.RequestContent * Azure.Core.ContentType * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.SendToUserAsync : string * Azure.Core.RequestContent * Azure.Core.ContentType * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function SendToUserAsync (userId As String, content As RequestContent, contentType As ContentType, Optional filter As String = Nothing, Optional context As RequestContext = Nothing) As Task(Of Response)
Parâmetros
- userId
- String
A ID do usuário.
- content
- RequestContent
O conteúdo a ser enviado como o corpo da solicitação. Os detalhes do esquema do corpo da solicitação estão na seção Comentários abaixo.
- contentType
- ContentType
Carregar tipo de arquivo. Valores permitidos: "application/json" | "application/octet-stream" | "texto/sem formatação".
- filter
- String
Seguindo a sintaxe de filtro OData para filtrar os assinantes que recebem as mensagens.
- context
- RequestContext
O contexto de solicitação, que pode substituir os comportamentos padrão do pipeline do cliente por chamada.
Retornos
A resposta retornada do serviço.
Exceções
userId
ou content
é nulo.
userId
é uma cadeia de caracteres vazia e era esperado que não estivesse vazio.
O serviço retornou um código de status sem êxito.
Exemplos
Este exemplo mostra como chamar SendToUserAsync com os parâmetros necessários e o conteúdo da solicitação.
var client = new WebPubSubServiceClient("<https://my-service.azure.com>", "<hub>");
var data = File.OpenRead("<filePath>");
Response response = await client.SendToUserAsync("<userId>", RequestContent.Create(data), ContentType.ApplicationOctetStream);
Console.WriteLine(response.Status);
Este exemplo mostra como chamar SendToUserAsync com todos os parâmetros e conteúdo da solicitação.
var client = new WebPubSubServiceClient("<https://my-service.azure.com>", "<hub>");
var data = File.OpenRead("<filePath>");
Response response = await client.SendToUserAsync("<userId>", RequestContent.Create(data), ContentType.ApplicationOctetStream, "<filter>");
Console.WriteLine(response.Status);
Aplica-se a
Azure SDK for .NET