Click or drag to resize
MediaConnector Class
Class for creating connections between media handling objects.
Inheritance Hierarchy
SystemObject
  Ozeki.MediaMediaConnector

Namespace: Ozeki.Media
Assembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntax
public class MediaConnector : IMediaConnector, 
	IDisposable

The MediaConnector type exposes the following members.

Constructors
  NameDescription
Public methodMediaConnector
Initializes a new instance of the MediaConnector class.
Top
Methods
  NameDescription
Public methodConnect(IAudioSender, IAudioReceiver)
Connects an IAudioSender with an IAudioReceiver. The media data will flow from the sender to the receiver.
Public methodConnect(IVideoSender, IVideoReceiver)
Connects an IVideoSender with an IVideoReceiver. The media data will flow from the sender to the receiver.
Public methodDisconnect(IAudioSender, IAudioReceiver)
Closes the connection between two audio handlers.
Public methodDisconnect(IVideoSender, IVideoReceiver)
Closes the connection between two video handlers.
Public methodDispose
Releases all resources used by the MediaConnector
Protected methodDispose(Boolean)
Releases the unmanaged resources used by the MediaConnector and optionally releases the managed resources
Protected methodFinalize (Overrides ObjectFinalize.)
Public methodIsConnected(IAudioSender, IAudioReceiver)
Public methodIsConnected(IVideoSender, IVideoReceiver)
Top
Remarks
The MediaConnector class defines connections between audio and video handler objects. These connections can be destroyed as well. An audio connection consists of an IAudioSender and an IAudioReceiver. The connection operates only in one way. A video connection consists of an IVideoSender and an IVideoReceiver. The connection operates only in one way. The media data will flow from the sender to the receiver. The connection performs automatic conversion between the source and destination media format.
See Also