Compartir a través de


UserEventResponse Constructores

Definición

Sobrecargas

UserEventResponse()

Constructor predeterminado para JsonSerialize

UserEventResponse(BinaryData, WebPubSubDataType)

Inicialice una instancia de MessageResponse.

UserEventResponse(String, WebPubSubDataType)

Inicialice una instancia de MessageResponse.

UserEventResponse()

Source:
UserEventResponse.cs

Constructor predeterminado para JsonSerialize

public UserEventResponse ();
Public Sub New ()

Se aplica a

UserEventResponse(BinaryData, WebPubSubDataType)

Source:
UserEventResponse.cs

Inicialice una instancia 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

Mensaje de tipo BinaryData.

dataType
WebPubSubDataType

Tipo de datos de mensaje.

Se aplica a

UserEventResponse(String, WebPubSubDataType)

Source:
UserEventResponse.cs

Inicialice una instancia 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

Mensaje de tipo de cadena.

dataType
WebPubSubDataType

Tipo de datos de mensaje. El valor predeterminado se establece en texto.

Se aplica a