Class Vibrator
Definition
- Namespace:
- Tizen.System
- Assembly:
- Tizen.System.dll
- API Level:
- 3
- Privilege Level:
- public
- Privilege:
- http://tizen.org/privilege/haptic
- Feature:
- http://tizen.org/feature/feedback.vibration
The Vibrator class provides the properties and methods to control a vibrator.
C#Copypublic class Vibrator : IDisposable
- Inheritance
-
Vibrator
- Implements
-
System.IDisposable
Remarks
The Vibrator API provides the way to access the vibrators in the device. It allows the management of the device's vibrator parameters, such as the vibration count and level. It provides the methods to vibrate and stop the vibration.
Examples
CopyConsole.WriteLine("Total number of Vibrators are: {0}", Tizen.System.Vibrator.NumberOfVibrators);
Properties
Declaration
C#Copypublic static int NumberOfVibrators { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When an invalid parameter value is set. |
UnauthorizedAccessException | If the privilege is not set. |
InvalidOperationException | In case of any system error. |
API Level: 3
Declaration
C#Copypublic static IReadOnlyList<Vibrator> Vibrators { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<Vibrator> |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When an invalid parameter value is set. |
UnauthorizedAccessException | If the privilege is not set. |
InvalidOperationException | In case of any system error. |
API Level: 3
Methods
Dispose()
Dispose API for closing the internal resources. This function can be used to stop all the effects started by Vibrate().
Declaration
C#Copypublic void Dispose()
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When an invalid parameter value is set. |
UnauthorizedAccessException | If the privilege is not set. |
InvalidOperationException | In case of any system error. |
API Level: 3
Dispose(Boolean)
Dispose API for closing the internal resources. This function can be used to stop all the effects started by Vibrate().
Declaration
C#Copyprotected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
Boolean | disposing |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When an invalid parameter value is set. |
UnauthorizedAccessException | If the privilege is not set. |
InvalidOperationException | In case of any system error. |
API Level: 3
Declaration
C#Copyprotected void Finalize()
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When an invalid parameter value is set. |
UnauthorizedAccessException | If the privilege is not set. |
InvalidOperationException | In case of any system error. |
Stop()
Stops all the vibration effects which are being played. This function can be used to stop all the effects started by Vibrate().
Declaration
C#Copypublic void Stop()
Examples
CopyVibrator vibrator = Vibrator.Vibrators[0]; try { vibrator.Stop(); } catch(Exception e) { }
Exceptions
Type | Condition |
---|---|
System.ArgumentException | In case an invalid vibrator instance is used. |
UnauthorizedAccessException | If the privilege is not set. |
InvalidOperationException | In case of any system error. |
System.NotSupportedException | In case the device does not support this behavior. |
API Level: 3
Feature: http://tizen.org/feature/feedback.vibration
Vibrate(Int32, Int32)
Vibrates during the specified time with a constant intensity. This function can be used to start monotonous vibration for the specified time.
Declaration
C#Copypublic void Vibrate(int duration, int feedback)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | duration | The play duration in milliseconds. |
System.Int32 | feedback | The amount of the intensity variation (0 ~ 100). |
Examples
CopyVibrator vibrator = Vibrator.Vibrators[0]; try { vibrator.Vibrate(2000, 70); } catch(Exception e) { }
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When an invalid parameter value is set. |
UnauthorizedAccessException | If the privilege is not set. |
InvalidOperationException | In case of any system error. |
System.NotSupportedException | In case the device does not support this behavior. |