Replies: 1 comment
-
The best practice it to await the result of the asynchronous method like so: var newScheduledMeeting = await client.Meetings.CreateScheduledMeetingAsync(myUser.Id, "ZoomNet Integration Testing: scheduled meeting", "The agenda", start, duration, TimeZones.UTC, "p@ss!w0rd", settings, trackingFields, null, cancellationToken).ConfigureAwait(false); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently using the library in a web application. I need to wait for the meeting ID to be returned, for example, when creating a Scheduled Meeting.
Can a synchronous method for CreateScheduledMeeting be added, or what is the best practice?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions