Table of Contents

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

Guid

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

SignalContent

Examples

.WithContent(new SignalContent("chat", "Hello everyone!"))

SessionId

The session Id.

[Mandatory(1)]
public string SessionId { get; }

Property Value

string

Methods

Build()

public static IBuilderForApplicationId Build()

Returns

IBuilderForApplicationId

BuildRequestMessage()

Converts the request to a HttpRequest.

public HttpRequestMessage BuildRequestMessage()

Returns

HttpRequestMessage

The Http request.