@@ -1444,6 +1444,7 @@ private void ProcessMethod(JsonReader jsonReader)
1444
1444
HandleInteractivityStarted ( jsonReader ) ;
1445
1445
break ;
1446
1446
case WS_MESSAGE_METHOD_ON_CONTROL_UPDATE :
1447
+ case WS_MESSAGE_METHOD_ON_CONTROL_CREATE :
1447
1448
HandleControlUpdate ( jsonReader ) ;
1448
1449
break ;
1449
1450
case WS_MESSAGE_METHOD_ON_GROUP_CREATE :
@@ -2390,6 +2391,7 @@ private void HandleGiveInput(JsonReader jsonReader)
2390
2391
string participantSessionID = string . Empty ;
2391
2392
string transactionID = string . Empty ;
2392
2393
InputEvent inputEvent = new InputEvent ( ) ;
2394
+
2393
2395
while ( jsonReader . Read ( ) )
2394
2396
{
2395
2397
if ( jsonReader . Value != null )
@@ -2414,6 +2416,7 @@ private void HandleGiveInput(JsonReader jsonReader)
2414
2416
}
2415
2417
}
2416
2418
}
2419
+
2417
2420
inputEvent . TransactionID = transactionID ;
2418
2421
InteractiveParticipant participant = ParticipantBySessionId ( participantSessionID ) ;
2419
2422
if ( ! _participantsWhoTriggeredGiveInput . ContainsKey ( inputEvent . ControlID ) )
@@ -3340,6 +3343,7 @@ private void SendJsonString(string jsonString)
3340
3343
private const string WS_MESSAGE_METHOD_PARTICIPANT_UPDATE = "onParticipantUpdate" ;
3341
3344
private const string WS_MESSAGE_METHOD_READY = "ready" ;
3342
3345
private const string WS_MESSAGE_METHOD_ON_CONTROL_UPDATE = "onControlUpdate" ;
3346
+ private const string WS_MESSAGE_METHOD_ON_CONTROL_CREATE = "onControlCreate" ;
3343
3347
private const string WS_MESSAGE_METHOD_ON_GROUP_CREATE = "onGroupCreate" ;
3344
3348
private const string WS_MESSAGE_METHOD_ON_GROUP_UPDATE = "onGroupUpdate" ;
3345
3349
private const string WS_MESSAGE_METHOD_ON_READY = "onReady" ;
0 commit comments