Class MediaPolicy

Definition

Namespace:
Tizen.Security.DevicePolicyManager
Assembly:
Tizen.Security.DevicePolicyManager.dll
API Level:
6

The MediaPolicy provides methods to manage media policies.

C#
Copy
public class MediaPolicy : DevicePolicy, IDisposable
Inheritance
System.Object
MediaPolicy
Implements
System.IDisposable
Remarks

The MediaPolicy is created by GetPolicy<T>(). and the DevicePolicyManager instance must exists when using the MediaPolicy.

Fields

View Source

CameraPolicyName

The Camera policy name. This represents IsCameraAllowed.

Declaration
C#
Copy
public static readonly string CameraPolicyName
Field Value
Type Description
System.String
Remarks

This is used in PolicyName.

API Level: 6
View Source

MicrophonePolicyName

The Microphone policy name. This represents IsMicrophoneAllowed.

Declaration
C#
Copy
public static readonly string MicrophonePolicyName
Field Value
Type Description
System.String
Remarks

This is used in PolicyName.

API Level: 6

Properties

View Source

IsCameraAllowed

Gets whether the use of camera is allowed or not.

Declaration
C#
Copy
public bool IsCameraAllowed { get; }
Property Value
Type Description
Boolean

true if the use of camera is allowed, false otherwise. The default value is true.

API Level: 6
View Source

IsMicrophoneAllowed

Gets whether the use of microphone is allowed or not.

Declaration
C#
Copy
public bool IsMicrophoneAllowed { get; }
Property Value
Type Description
Boolean

true if the use of microphone is allowed, false otherwise. The default value is true.

API Level: 6

Methods

View Source

Dispose()

Releases any unmanaged resources used by this object.

Declaration
C#
Copy
public void Dispose()
View Source

Dispose(Boolean)

Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.

Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type Name Description
Boolean disposing

If true, disposes any disposable objects. If false, does not dispose disposable objects.

View Source

Finalize()

A Destructor of MediaPolicy.

Declaration
C#
Copy
protected void Finalize()

Events

View Source

CameraPolicyChanged

The CameraPolicyChanged event is raised when the camera policy is changed.

Declaration
C#
Copy
public event EventHandler<PolicyChangedEventArgs> CameraPolicyChanged
Event Type
Type Description
System.EventHandler<PolicyChangedEventArgs>
Remarks

This event will be removed automatically when MediaPolicy is destroyed.

API Level: 6
View Source

MicrophonePolicyChanged

The MicrophonePolicyChanged event is raised when the microphone policy is changed.

Declaration
C#
Copy
public event EventHandler<PolicyChangedEventArgs> MicrophonePolicyChanged
Event Type
Type Description
System.EventHandler<PolicyChangedEventArgs>
Remarks

This event will be removed automatically when MediaPolicy is destroyed.

API Level: 6

Implements

System.IDisposable