Class BulkResultData
Definition
- Namespace:
- Tizen.Applications.DataControl
- Assembly:
- Tizen.Applications.DataControl.dll
- API Level:
- 3
Represents the BulkResultData class for the DataControl bulk request.
public class BulkResultData : IDisposable
- Inheritance
-
BulkResultData
- Implements
Constructors
View SourceBulkResultData()
Initializes the BulkResultData class.
Declaration
public BulkResultData()
Exceptions
Type | Condition |
---|---|
InvalidOperationException | Thrown in case of any internal error. |
API Level: 3
Methods
View SourceAdd(Bundle, Int32)
Adds the bulk operation result data.
Declaration
public void Add(Bundle data, int result)
Parameters
Type | Name | Description |
---|---|---|
Bundle | data | The result data. |
Int32 | result | Result. |
Exceptions
Type | Condition |
---|---|
ArgumentException | Thrown in case of an invalid parameter. |
API Level: 3
View SourceDispose()
Releases all the resources used by the BulkResultData class.
Declaration
public void Dispose()
API Level: 3
View SourceDispose(Boolean)
Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.
Declaration
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. |
API Level: 3
View SourceFinalize()
Destructor of the BulkResultData class.
Declaration
protected void Finalize()
GetCount()
Gets the current result data count.
Declaration
public int GetCount()
Returns
Type | Description |
---|---|
Int32 |
API Level: 3
View SourceGetData(Int32)
Returns the result data at the given zero-based data index.
Declaration
public Bundle GetData(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The target result data index. |
Returns
Type | Description |
---|---|
Bundle |
Exceptions
Type | Condition |
---|---|
ArgumentException | Thrown in case of an invalid parameter. |
API Level: 3
View SourceGetResult(Int32)
Returns the result at the given zero-based data index.
Declaration
public int GetResult(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The target result index. |
Returns
Type | Description |
---|---|
Int32 |
Exceptions
Type | Condition |
---|---|
ArgumentException | Thrown in case of an invalid parameter. |