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
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for .NET