Share via


UserEventResponse Construtores

Definição

Sobrecargas

UserEventResponse()

Construtor padrão para JsonSerialize

UserEventResponse(BinaryData, WebPubSubDataType)

Inicialize uma instância de MessageResponse.

UserEventResponse(String, WebPubSubDataType)

Inicialize uma instância de MessageResponse.

UserEventResponse()

Origem:
UserEventResponse.cs

Construtor padrão para JsonSerialize

public UserEventResponse ();
Public Sub New ()

Aplica-se a

UserEventResponse(BinaryData, WebPubSubDataType)

Origem:
UserEventResponse.cs

Inicialize uma instância de MessageResponse.

public UserEventResponse (BinaryData data, Microsoft.Azure.Functions.Worker.WebPubSubDataType dataType);
new Microsoft.Azure.Functions.Worker.UserEventResponse : BinaryData * Microsoft.Azure.Functions.Worker.WebPubSubDataType -> Microsoft.Azure.Functions.Worker.UserEventResponse
Public Sub New (data As BinaryData, dataType As WebPubSubDataType)

Parâmetros

data
BinaryData

Mensagem de tipo BinaryData.

dataType
WebPubSubDataType

Tipo de dados de mensagem.

Aplica-se a

UserEventResponse(String, WebPubSubDataType)

Origem:
UserEventResponse.cs

Inicialize uma instância de MessageResponse.

public UserEventResponse (string data, Microsoft.Azure.Functions.Worker.WebPubSubDataType dataType = Microsoft.Azure.Functions.Worker.WebPubSubDataType.Text);
new Microsoft.Azure.Functions.Worker.UserEventResponse : string * Microsoft.Azure.Functions.Worker.WebPubSubDataType -> Microsoft.Azure.Functions.Worker.UserEventResponse
Public Sub New (data As String, Optional dataType As WebPubSubDataType = Microsoft.Azure.Functions.Worker.WebPubSubDataType.Text)

Parâmetros

data
String

Mensagem de tipo de cadeia de caracteres.

dataType
WebPubSubDataType

Tipo de dados de mensagem. Padrão definido como texto.

Aplica-se a