Struct SendSignalsRequest
- Namespace
- Vonage.Video.Signaling.SendSignals
- Assembly
- Vonage.dll
Represents a request to send a signal to all participants.
[Builder(new string[] { })]
public readonly struct SendSignalsRequest : IVonageRequest, IHasApplicationId, IHasSessionId
- Implements
- Inherited Members
Properties
ApplicationId
The Vonage Application UUID.
[Mandatory(0)]
public Guid ApplicationId { get; }
Property Value
Content
Sets the signal content to send to all participants. The type string has a maximum length of 128 bytes, and the data string has a maximum size of 8 kB.
[Mandatory(2)]
public SignalContent Content { get; }
Property Value
Examples
.WithContent(new SignalContent("chat", "Hello everyone!"))
SessionId
The session Id.
[Mandatory(1)]
public string SessionId { get; }
Property Value
Methods
Build()
public static IBuilderForApplicationId Build()
Returns
BuildRequestMessage()
Converts the request to a HttpRequest.
public HttpRequestMessage BuildRequestMessage()
Returns
- HttpRequestMessage
The Http request.