Class DevicePolicyManager

Definition

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

The DevicePolicyManager provides the methods to create handle for device policy.

C#
Copy
public class DevicePolicyManager : IDisposable
Inheritance
System.Object
DevicePolicyManager
Implements
System.IDisposable

Constructors

View Source

DevicePolicyManager()

A constructor of DevicePolicyManager that creates handle.

Declaration
C#
Copy
public DevicePolicyManager()
Exceptions
Type Condition
InvalidOperationException

Thrown when connection refused or a memory error occurred.

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
System.Boolean disposing

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

View Source

Finalize()

A Destructor of DevicePolicyManager.

Declaration
C#
Copy
protected void Finalize()
View Source

GetPolicy<T>()

Method to creates an instance of Device Policy.

Declaration
C#
Copy
public T GetPolicy<T>() where T : DevicePolicy
Returns
Type Description
T

An instance of policy.

Type Parameters
Name Description
T

The generic type to create.

Exceptions
Type Condition
InvalidOperationException

Thrown when failed to create instance of the policy.

API Level: 6

Implements

System.IDisposable