UserEventResponse Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
UserEventResponse() |
Default constructor for JsonSerialize |
UserEventResponse(BinaryData, WebPubSubDataType) |
Initialize an instance of MessageResponse. |
UserEventResponse(String, WebPubSubDataType) |
Initialize an instance of MessageResponse. |
UserEventResponse()
- Source:
- UserEventResponse.cs
- Source:
- UserEventResponse.cs
Default constructor for JsonSerialize
public UserEventResponse ();
Public Sub New ()
Applies to
UserEventResponse(BinaryData, WebPubSubDataType)
- Source:
- UserEventResponse.cs
- Source:
- UserEventResponse.cs
Initialize an instance of 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)
Parameters
- data
- BinaryData
BinaryData type message.
- dataType
- WebPubSubDataType
Message data type.
Applies to
UserEventResponse(String, WebPubSubDataType)
- Source:
- UserEventResponse.cs
- Source:
- UserEventResponse.cs
Initialize an instance of 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)
Parameters
- data
- String
String type message.
- dataType
- WebPubSubDataType
Message data type. Default set to text.
Applies to
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.
Azure SDK for .NET