Class ScreenMirroring
Definition
- Namespace:
- Tizen.Multimedia.Remoting
- Assembly:
- Tizen.Multimedia.Remoting.dll
Provides the ability to connect to and disconnect from a screen mirroring source, start, pause, and resume the screen mirroring as a sink.
C#Copypublic class ScreenMirroring : IDisposable
- Inheritance
-
objectScreenMirroring
- Implements
-
System.IDisposable
Constructors
Declaration
C#Copypublic ScreenMirroring()
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | The feature is not supported. |
Properties
Declaration
C#Copypublic ScreenMirroringAudioInfo AudioInfo { get; }
Property Value
Type | Description |
---|---|
ScreenMirroringAudioInfo |
Declaration
C#Copypublic ScreenMirroringVideoInfo VideoInfo { get; }
Property Value
Type | Description |
---|---|
ScreenMirroringVideoInfo |
Methods
ConnectAsync(string)
Creates the connection and ready for receiving data from a mirroring source.
Declaration
C#Copypublic Task ConnectAsync(string sourceIp)
Parameters
Type | Name | Description |
---|---|---|
string | sourceIp | The source ip address to connect. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A task that represents the asynchronous operation. |
Remarks
The state must be Prepared state by Prepare(Display, ScreenMirroringResolutions).
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
System.InvalidOperationException | The current state is not in the valid. |
System.ArgumentException |
|
System.ObjectDisposedException | The ScreenMirroring has already been disposed. |
System.UnauthorizedAccessException | Caller does not have required permission. |
Declaration
C#Copypublic void Disconnect()
Remarks
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | The current state is not in the valid. |
System.ObjectDisposedException | The ScreenMirroring has already been disposed. |
System.UnauthorizedAccessException | Caller does not have required permission. |
Declaration
C#Copypublic void Dispose()
Remarks
Call Dispose() when you are finished using the ScreenMirroring. The Dispose() method leaves the ScreenMirroring in an unusable state. After calling Dispose(), you must release all references to the ScreenMirroring so the garbage collector can reclaim the memory that the ScreenMirroring was occupying.
Declaration
C#Copyprotected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
bool | disposing | true to release both managed and unmanaged resources; false to release only unmanaged resources. |
Declaration
C#Copyprotected ~ScreenMirroring()
Declaration
C#Copypublic Task PauseAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A task that represents the asynchronous operation. |
Remarks
The state must be Playing state by StartAsync().
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | The current state is not in the valid. |
System.ObjectDisposedException | The ScreenMirroring has already been disposed. |
System.UnauthorizedAccessException | Caller does not have required permission. |
Prepare(Display, ScreenMirroringResolutions)
Prepares the screen mirroring with the specified display and resolutions.
Declaration
C#Copypublic void Prepare(Display display, ScreenMirroringResolutions resolutions)
Parameters
Type | Name | Description |
---|---|---|
Display | display | The display where the mirroring will be played on. |
ScreenMirroringResolutions | resolutions | The desired resolutions. |
Remarks
The state must be Idle.
Exceptions
Type | Condition |
---|---|
System.ArgumentException |
|
System.ArgumentNullException |
|
System.InvalidOperationException | The current state is not in the valid. |
System.ObjectDisposedException | The ScreenMirroring has already been disposed. |
Declaration
C#Copypublic void Prepare(Display display)
Parameters
Type | Name | Description |
---|---|---|
Display | display | The display where the mirroring will be played on. |
Remarks
The state must be Idle.
All supported resolutions will be candidates.
Exceptions
Type | Condition |
---|---|
System.ArgumentException |
|
System.ArgumentNullException |
|
System.InvalidOperationException | The current state is not in the valid. |
System.ObjectDisposedException | The ScreenMirroring has already been disposed. |
Declaration
C#Copypublic Task ResumeAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A task that represents the asynchronous operation. |
Remarks
The state must be Paused state by PauseAsync().
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | The current state is not in the valid. |
System.ObjectDisposedException | The ScreenMirroring has already been disposed. |
System.UnauthorizedAccessException | Caller does not have required permission. |
Declaration
C#Copypublic Task StartAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A task that represents the asynchronous operation. |
Remarks
The state must be Connected state by ConnectAsync(string).
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | The current state is not in the valid. |
System.ObjectDisposedException | The ScreenMirroring has already been disposed. |
System.UnauthorizedAccessException | Caller does not have required permission. |
Declaration
C#Copypublic void Unprepare()
Remarks
The state must be Prepared, or Disconnected.
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | The current state is not in the valid. |
System.ObjectDisposedException | The ScreenMirroring has already been disposed. |
Events
Declaration
C#Copypublic event EventHandler<ScreenMirroringErrorOccurredEventArgs> ErrorOccurred
Event Type
Type | Description |
---|---|
System.EventHandler<TEventArgs><ScreenMirroringErrorOccurredEventArgs> |
Declaration
C#Copypublic event EventHandler<ScreenMirroringStateChangedEventArgs> StateChanged
Event Type
Type | Description |
---|---|
System.EventHandler<TEventArgs><ScreenMirroringStateChangedEventArgs> |