Freigeben über


WebPubSubServiceClient.SendToUserAsync Methode

Definition

Überlädt

SendToUserAsync(String, String, ContentType)

Senden Sie eine Nachricht an den bestimmten Benutzer.

SendToUserAsync(String, RequestContent, ContentType, RequestContext)

Senden Sie Inhalte im Anforderungstext an den bestimmten Benutzer.

SendToUserAsync(String, RequestContent, ContentType, String, RequestContext)

Senden Sie Inhalte im Anforderungstext an den bestimmten Benutzer.

SendToUserAsync(String, String, ContentType)

Source:
WebPubSubServiceClient.cs

Senden Sie eine Nachricht an den bestimmten Benutzer.

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)

Parameter

userId
String

Die Benutzer-ID.

content
String
contentType
ContentType

Die Standardwerte sind ContentType.PlainText.

Gibt zurück

A Response , wenn erfolgreich.

Gilt für:

SendToUserAsync(String, RequestContent, ContentType, RequestContext)

Source:
WebPubSubServiceClient.cs

Senden Sie Inhalte im Anforderungstext an den bestimmten Benutzer.

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)

Parameter

userId
String

Die Benutzer-ID.

content
RequestContent

Der Inhalt, der als Textkörper der Anforderung gesendet werden soll. Details zum Anforderungstextschema finden Sie im Abschnitt Hinweise unten.

contentType
ContentType

Dateityp hochladen. Zulässige Werte: "application/json" | "application/octet-stream" | "text/plain".

context
RequestContext

Der Anforderungskontext, der das Standardverhalten der Clientpipeline pro Aufruf außer Kraft setzen kann.

Gibt zurück

Die vom Dienst zurückgegebene Antwort.

Ausnahmen

userId oder content ist NULL.

userId ist eine leere Zeichenfolge und wurde erwartet, dass sie nicht leer ist.

Der Dienst hat einen nicht erfolgreichen status Code zurückgegeben.

Beispiele

In diesem Beispiel wird gezeigt, wie SendToUserAsync mit den erforderlichen Parametern und Anforderungsinhalten aufgerufen wird.

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);

Hinweise

Schema für Response Error:

{
              code: string,
              message: string,
              target: string,
              details: [ErrorDetail],
              inner: {
                code: string,
                inner: InnerError
              }
            }

Gilt für:

SendToUserAsync(String, RequestContent, ContentType, String, RequestContext)

Source:
WebPubSubServiceClient.cs

Senden Sie Inhalte im Anforderungstext an den bestimmten Benutzer.

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)

Parameter

userId
String

Die Benutzer-ID.

content
RequestContent

Der Inhalt, der als Textkörper der Anforderung gesendet werden soll. Details zum Anforderungstextschema finden Sie im Abschnitt Hinweise unten.

contentType
ContentType

Dateityp hochladen. Zulässige Werte: "application/json" | "application/octet-stream" | "text/plain".

filter
String

Verwenden Sie die OData-Filtersyntax, um die Abonnenten herauszufiltern, die die Nachrichten empfangen.

context
RequestContext

Der Anforderungskontext, der das Standardverhalten der Clientpipeline pro Aufruf außer Kraft setzen kann.

Gibt zurück

Die vom Dienst zurückgegebene Antwort.

Ausnahmen

userId oder content ist NULL.

userId ist eine leere Zeichenfolge und wurde erwartet, dass sie nicht leer ist.

Der Dienst hat einen nicht erfolgreichen status Code zurückgegeben.

Beispiele

In diesem Beispiel wird gezeigt, wie SendToUserAsync mit den erforderlichen Parametern und Anforderungsinhalten aufgerufen wird.

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);

In diesem Beispiel wird gezeigt, wie SendToUserAsync mit allen Parametern und Anforderungsinhalten aufgerufen wird.

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);

Gilt für: