Class StorageManager
Definition
- Namespace:
- Tizen.System
- Assembly:
- Tizen.System.Storage.dll
- API Level:
- 3
The StorageManager provides the properties or methods to access storage in the device.
C#Copypublic static class StorageManager
- Inheritance
-
System.ObjectStorageManager
Properties
Declaration
C#Copypublic static IEnumerable<Storage> Storages { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<Storage> |
API Level: 3
Methods
View Source
SetChangedEvent(StorageArea, EventHandler)
Registers an eventhandler for state changes of specific storage type.
Declaration
C#Copypublic static void SetChangedEvent(StorageArea type, EventHandler handler)
Parameters
Type | Name | Description |
---|---|---|
StorageArea | type | The type of the storage. |
System.EventHandler | handler | An eventhandler to register. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the storage is not supported. |
API Level: 5
Feature: http://tizen.org/feature/storage.external
View Source
UnsetChangedEvent(StorageArea, EventHandler)
Unregisters an eventhandler for state changes of specific storage type.
Declaration
C#Copypublic static void UnsetChangedEvent(StorageArea type, EventHandler handler)
Parameters
Type | Name | Description |
---|---|---|
StorageArea | type | The type of the storage. |
System.EventHandler | handler | An eventhandler to unregister. |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException | Thrown when the storage is not supported. |