COpenTok.AudioDevice.AudioBus | An audio bus used for all publisher and subscribers. This class is used to both read and write audio samples in order for them to be rendered or sent to remote peers |
COpenTok.AudioData | Defines several parameters related to an audio sample batch |
COpenTok.AudioDevice | A class that includes methods for setting the audio device to be used by publishers and subscribers |
COpenTok.AudioDeviceSettings | Defines the settings retrieved from the IAudioDevice.GetAudioCapturerSettings() and IAudioDevice.GetAudioRendererSettings() methods |
COpenTok.Publisher.AudioNetworkStats | Defines an audio statistics object for the Stats property of a AudioNetworkStatsEventArgs object |
COpenTok.Session.Builder | Used to create a Session instance |
COpenTok.Publisher.Builder | Used to create a Publisher instance |
COpenTok.Subscriber.Builder | Used to create a Subscriber instance |
COpenTok.Capabilities | Defines values for the Capabilities property of a Session object, based on the role assigned to the token used to connect to the session |
▼CEventArgs | |
COpenTok.AudioDevice.Notifications.InputAudioDeviceEventArgs | Contains the arguments for audio input device events |
COpenTok.AudioDevice.Notifications.OutputAudioDeviceEventArgs | Contains the arguments for audio output device events |
COpenTok.Publisher.AudioLevelArgs | Defines arguments for AudioLevel events |
COpenTok.Publisher.AudioNetworkStatsEventArgs | Defines arguments for AudioStatsUpdated events |
COpenTok.Publisher.ErrorEventArgs | Defines arguments for the Error event |
COpenTok.Publisher.RtcStatsReportArgs | Defines arguments for RtcStatsReport events |
COpenTok.Publisher.StreamEventArgs | Defines arguments for the StreamCreated and StreamDestroyed events |
COpenTok.Publisher.VideoEventArgs | Defines arguments for the VideoEnabled and VideoDisabled events |
COpenTok.Publisher.VideoNetworkStatsEventArgs | Defines arguments for VideoStatsUpdated events |
COpenTok.Session.ArchiveStartedEventArgs | Defines arguments for the ArchiveStarted event |
COpenTok.Session.ArchiveStoppedEventArgs | Defines arguments for the ArchiveStopped event |
COpenTok.Session.ConnectionEventArgs | Defines arguments for the ConnectionCreated and ConnectionDroppedevents |
COpenTok.Session.ErrorEventArgs | Defines arguments for the Error event |
COpenTok.Session.MuteForcedEventArgs | Defines arguments for the MuteForced event |
COpenTok.Session.SignalEventArgs | Defines arguments for the Session.Signal event |
COpenTok.Session.StreamEventArgs | Defines arguments for the StreamReceived and StreamDropped events |
COpenTok.Subscriber.AudioDataEventArgs | Defines parameters for OpenTok.AudioData events |
COpenTok.Subscriber.AudioLevelArgs | Defines arguments for AudioLevel events |
COpenTok.Subscriber.AudioNetworkStatsEventArgs | Defines arguments for AudioStatsUpdated events |
COpenTok.Subscriber.CaptionTextArgs | Defines arguments for CaptionText events |
COpenTok.Subscriber.ErrorEventArgs | Defines arguments for the Error event |
COpenTok.Subscriber.RtcStatsReportArgs | Defines arguments for RtcStatsReport events |
COpenTok.Subscriber.VideoEventArgs | Defines arguments for the VideoEnabled and VideoDisabled events |
COpenTok.Subscriber.VideoNetworkStatsEventArgs | Defines arguments for VideoStatsUpdated events |
▼CException | |
COpenTok.OpenTokException | Defines errors thrown by the OpenTok Windows SDK |
▼COpenTok.IAudioDevice | Defines an Audio device to be used by all publishers and subscribers |
COpenTok.MMAudioDevice | Custom audio device implementation based on mmdeviceapi. This custom audio device can be used instead of the default internal audio device provided by OpenTok.AudioDevice |
COpenTok.IceConfig | A class for setting custom ICE configuration |
COpenTok.IceServer | Defines the object to add to the List for the CustomIceServers property of the IceConfig class |
COpenTok.ICustomAudioTransformer | Interface used to define a custom audio transformer to be used in the AudioTransformer(string name, ICustomAudioTransformer transformer) constructor |
COpenTok.ICustomVideoTransformer | Interface used to define a custom vidoe transformer to be used in used in the VideoTransformer.VideoTransformer(string name, ICustomVideoTransformer transformer) constructor |
▼COpenTok.IDispatcher | Interface for a class used by Session, Publisher, and Subscriber instances to schedule events to a different thread |
COpenTok.DedicatedWorkerDispatcher | Implementation of IDispatcher that uses a dedicated worker thread to deliver events. Available for all application types. Delivery order is guaranteed. CPU-intensive or long-running tasks can be executed in the handlers, as the dedicated thread is not used for any other purpose. UI can't be manipulated directly in the handlers. If this is required, events must be scheduled first to the UI thread |
COpenTok.DirectDispatcher | Implementation of IDispatcher that doesn't schedule events at all. It uses the same thread used by the lower layer to deliver events. Available for all application types. Delivery order is guaranteed. CPU-intensive or long-running tasks should not be executed in the handlers, as they would block the native API main thread and affect performance or responsiveness. UI can't be manipulated directly in the handlers. If this is required, events must be scheduled first to the UI thread |
COpenTok.ThreadPoolDispatcher | Implementation of IDispatcher that uses different threads from the managed ThreadPool to deliver events. Available for all application types. Important: Delivery order is not guaranteed. CPU-intensive or long-running tasks can be executed in the handlers, as the underlying thread system is prepared to handle this. UI can't be manipulated directly in the handlers. If this is required, events must be scheduled first to the UI thread |
COpenTok.WinFormsDispatcher | Implementation of IDispatcher that uses the Windows Forms Main/UI thread to dispatch events. Available only for Windows Forms applications. Delivery order is guaranteed. CPU-intensive or long-running tasks should not be executed in the handlers, as they would block the UI thread and affect performance or responsiveness |
COpenTok.WPFDispatcher | Implementation of IDispatcher that uses the WPF Main/UI thread to dispatch events. Available only for WPF applications. Delivery order is guaranteed. CPU-intensive or long-running tasks should not be executed in the handlers, as they would block the UI thread and affect performance or responsiveness |
▼CIDisposable | |
COpenTok.AudioDevice.Notifications | Represents a subscription to system audio device notifications. This object sends events when a system input or output audio device is added or removed, and when the default system input or output audio device changes. This instance can be disposed when no longer used to release unmanaged resources |
COpenTok.AudioTransformer | Defines an audio transformation to be used in the Publisher.AudioTransformers array |
COpenTok.Connection | Represents a connection between a client and an OpenTok session |
COpenTok.Context | Used to manage resources for Session, Publisher, and Subscriber objects |
COpenTok.DedicatedWorkerDispatcher | Implementation of IDispatcher that uses a dedicated worker thread to deliver events. Available for all application types. Delivery order is guaranteed. CPU-intensive or long-running tasks can be executed in the handlers, as the dedicated thread is not used for any other purpose. UI can't be manipulated directly in the handlers. If this is required, events must be scheduled first to the UI thread |
COpenTok.MMAudioDevice | Custom audio device implementation based on mmdeviceapi. This custom audio device can be used instead of the default internal audio device provided by OpenTok.AudioDevice |
COpenTok.Publisher | A publisher captures an audio-video stream from the sources you specify |
COpenTok.Session | Represents an OpenTok session in which the client is participating |
COpenTok.Stream | Represents the state of an audio-video stream in an OpenTok session. To get the most updated information, use the Stream property of a Publisher or Subscriber before accessing any of the properties of the stream |
COpenTok.Subscriber | Used to consume an audio-video stream in the OpenTok session |
COpenTok.VideoCapturer | A video capturer implementation that captures video from on of the cameras available on the system |
COpenTok.VideoCapturer.VideoDevice | Defines a video device (such as a camera) |
COpenTok.VideoFrame | Defines a video frame for the IVideoRenderer.RenderFrame(VideoFrame) and IVideoFrameConsumer.Consume(VideoFrame) methods |
COpenTok.VideoTransformer | Defines a video transformation to be used in the Publisher.VideoTransformers array |
COpenTok.AudioDevice.InputAudioDevice | Represents an input audio device (such as a microphone) available on the Windows system. See EnumerateInputAudioDevices and SetInputAudioDevice |
▼COpenTok.IVideoCapturer | |
COpenTok.VideoCapturer | A video capturer implementation that captures video from on of the cameras available on the system |
COpenTok.IVideoFrameConsumer | Defines a video frame consumer to be used by the VideoCapturer of a Publisher |
COpenTok.IVideoRenderer | Defines a video renderer to be used by a Publisher or Subscriber object |
COpenTok.AudioDevice.OutputAudioDevice | Represents an output audio device (such as headphones or speakers) available on the Windows system. See EnumerateOutputAudioDevices and SetOutputAudioDevice |
COpenTok.Publisher.PublisherRtcStats | Represents RTC statistics for a media stream published by the publisher |
COpenTok.VideoCaptureSettings | Defines the settings passed into the VideoCapturer.UpdateCaptureSettings(ref VideoCaptureSettings) method |
COpenTok.VideoCapturer.VideoFormat | Defines a video format available to a video device |
COpenTok.Publisher.VideoNetworkStats | Defines a video statistics object for the Stats property of a VideoNetworkStatsEventArgs object |