Compartilhar via


WebPubSubServiceClient.SendToAllAsync Método

Definição

Sobrecargas

SendToAllAsync(RequestContent, ContentType, IEnumerable<String>, RequestContext)

Difunda o conteúdo dentro do corpo da solicitação para todas as conexões de cliente conectadas.

SendToAllAsync(RequestContent, ContentType, IEnumerable<String>, String, RequestContext)

Difunda o conteúdo dentro do corpo da solicitação para todas as conexões de cliente conectadas.

SendToAllAsync(String, ContentType)

Transmitir mensagem para todas as conexões de cliente conectadas.

SendToAllAsync(RequestContent, ContentType, IEnumerable<String>, RequestContext)

Origem:
WebPubSubServiceClient.cs

Difunda o conteúdo dentro do corpo da solicitação para todas as conexões de cliente conectadas.

public virtual System.Threading.Tasks.Task<Azure.Response> SendToAllAsync (Azure.Core.RequestContent content, Azure.Core.ContentType contentType, System.Collections.Generic.IEnumerable<string> excluded, Azure.RequestContext context);
abstract member SendToAllAsync : Azure.Core.RequestContent * Azure.Core.ContentType * seq<string> * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.SendToAllAsync : Azure.Core.RequestContent * Azure.Core.ContentType * seq<string> * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function SendToAllAsync (content As RequestContent, contentType As ContentType, excluded As IEnumerable(Of String), context As RequestContext) As Task(Of Response)

Parâmetros

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

Tipo de arquivo de upload. Valores permitidos: "application/json" | "application/octet-stream" | "text/plain".

excluded
IEnumerable<String>

IDs de conexão excluídas.

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

content é nulo.

O serviço retornou um código de status sem êxito.

Exemplos

Este exemplo mostra como chamar SendToAllAsync 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.SendToAllAsync(RequestContent.Create(data), ContentType.ApplicationOctetStream);
Console.WriteLine(response.Status);

Este exemplo mostra como chamar SendToAllAsync 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.SendToAllAsync(RequestContent.Create(data), ContentType.ApplicationOctetStream, new String[]{"<excluded>"});
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

SendToAllAsync(RequestContent, ContentType, IEnumerable<String>, String, RequestContext)

Origem:
WebPubSubServiceClient.cs

Difunda o conteúdo dentro do corpo da solicitação para todas as conexões de cliente conectadas.

public virtual System.Threading.Tasks.Task<Azure.Response> SendToAllAsync (Azure.Core.RequestContent content, Azure.Core.ContentType contentType, System.Collections.Generic.IEnumerable<string> excluded = default, string filter = default, Azure.RequestContext context = default);
abstract member SendToAllAsync : Azure.Core.RequestContent * Azure.Core.ContentType * seq<string> * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.SendToAllAsync : Azure.Core.RequestContent * Azure.Core.ContentType * seq<string> * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function SendToAllAsync (content As RequestContent, contentType As ContentType, Optional excluded As IEnumerable(Of String) = Nothing, Optional filter As String = Nothing, Optional context As RequestContext = Nothing) As Task(Of Response)

Parâmetros

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

Tipo de arquivo de upload. Valores permitidos: "application/json" | "application/octet-stream" | "text/plain".

excluded
IEnumerable<String>

IDs de conexão excluídas.

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

content é nulo.

O serviço retornou um código de status sem êxito.

Exemplos

Este exemplo mostra como chamar SendToAllAsync 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.SendToAllAsync(RequestContent.Create(data), ContentType.ApplicationOctetStream);
Console.WriteLine(response.Status);

Este exemplo mostra como chamar SendToAllAsync 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.SendToAllAsync(RequestContent.Create(data), ContentType.ApplicationOctetStream, new String[]{"<excluded>"}, "<filter>");
Console.WriteLine(response.Status);

Aplica-se a

SendToAllAsync(String, ContentType)

Origem:
WebPubSubServiceClient.cs

Transmitir mensagem para todas as conexões de cliente conectadas.

public virtual System.Threading.Tasks.Task<Azure.Response> SendToAllAsync (string content, Azure.Core.ContentType contentType = default);
abstract member SendToAllAsync : string * Azure.Core.ContentType -> System.Threading.Tasks.Task<Azure.Response>
override this.SendToAllAsync : string * Azure.Core.ContentType -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function SendToAllAsync (content As String, Optional contentType As ContentType = Nothing) As Task(Of Response)

Parâmetros

content
String
contentType
ContentType

O padrão é ContentType.PlainText.

Retornos

Um Response se bem-sucedido.

Aplica-se a