type ICefMediaRoute = interface(ICefBaseRefCounted)
Represents the route between a media source and sink. Instances of this object are created via ICefMediaRouter.CreateRoute and retrieved via ICefMediaObserver.OnRoutes. Contains the status and metadata of a routing operation. The functions of this interface may be called on any browser process thread unless otherwise indicated.
UNKNOWN
<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/capi/cef_media_router_capi.h">CEF source file: /include/capi/cef_media_router_capi.h (cef_media_route_t))
| Public | function GetId: ustring; |
| Public | function GetSource: ICefMediaSource; |
| Public | function GetSink: ICefMediaSink; |
| Public | procedure SendRouteMessage(const message_: ustring); |
| Public | procedure Terminate; |
| Public | property ID : ustring read GetId; |
| Public | property Source : ICefMediaSource read GetSource; |
| Public | property Sink : ICefMediaSink read GetSink; |
| Public | function GetId: ustring; |
|
Returns the ID for this route. Attributes
| |
| Public | function GetSource: ICefMediaSource; |
|
Returns the source associated with this route. | |
| Public | function GetSink: ICefMediaSink; |
|
Returns the sink associated with this route. | |
| Public | procedure SendRouteMessage(const message_: ustring); |
|
Send a message over this route. |message_| will be copied if necessary. | |
| Public | procedure Terminate; |
|
Terminate this route. Will result in an asynchronous call to ICefMediaObserver.OnRoutes on all registered observers. | |
| Public | property ID : ustring read GetId; |
|
Returns the ID for this route. | |
| Public | property Source : ICefMediaSource read GetSource; |
|
Returns the source associated with this route. | |
| Public | property Sink : ICefMediaSink read GetSink; |
|
Returns the sink associated with this route. | |