You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="eventCallbackUrl">URL to hit on conference events</param>
224
+
/// <param name="eventCallbackUrl">URL to hit on conference events, deprecated in favor of 'recordingStatusCallback', providing a 'recordingStatusCallback' will ignore 'eventCallbackUrl' if provided</param>
225
+
/// <param name="region">Where Twilio should mix the conference</param>
226
+
/// <param name="statusCallbackEvent">Specify which conference state changes should generate a webhook to the URL specified in the 'statusCallback'</param>
227
+
/// <param name="statusCallback">URL to hit on conference events</param>
228
+
/// <param name="statusCallbackMethod">Method to use when hitting 'statusCallback' url</param>
229
+
/// <param name="recordingStatusCallback">If a conference recording was requested via the record attribute, Twilio will make a request to this URL when the recording is available to access</param>
230
+
/// <param name="recordingStatusCallbackMethod">Method to use when hitting 'recordingStatusCallback'</param>
225
231
/// <returns>Dial element</returns>
226
232
publicDialConference(stringname,
227
233
bool?muted=null,
@@ -233,7 +239,13 @@ public Dial Conference(string name,
233
239
stringtrim=null,
234
240
stringwaitMethod=null,
235
241
stringwaitUrl=null,
236
-
stringeventCallbackUrl=null)
242
+
stringeventCallbackUrl=null,
243
+
stringregion=null,
244
+
stringstatusCallbackEvent=null,
245
+
stringstatusCallback=null,
246
+
stringstatusCallbackMethod=null,
247
+
stringrecordingStatusCallback=null,
248
+
stringrecordingStatusCallbackMethod=null)
237
249
{
238
250
varconference=newXElement("Conference",name);
239
251
if(muted!=null)
@@ -272,10 +284,34 @@ public Dial Conference(string name,
0 commit comments