Parameter bool true - generate random number of ID of conference room and user id. false - generate fixed number of ID of conference room and user id.
If Use RandomNumber=false
The first ID of conference room is 5000, next ID of conference room is 5001, Each new conference room ID will increate by one.
e.g.The first ID of conference user is 10000. next ID of conference user= the value of conference room + the value of conference user + 1 now conference room is 5000, the ID of conference user is 10000. The next user ID of conference room = 10000 + 5000 + 1
Remark This property is Read/Write.
Example
|
Visual Basic Syntax VideoChatServer1.InitServer 1234, 300 VideoChatServer1.UseRandomNumber=true confID=VideoChatServer1.CreateConference usreID= VideoChatServer1.AddUser (confID)
|
|