Class ParcelHeader
Definition
- Namespace:
- Tizen.Applications.RPCPort
- Assembly:
- Tizen.Applications.Common.dll
The class represents the header information of an RPC Parcel.
public class ParcelHeader
- Inheritance
-
objectParcelHeader
Methods
View SourceGetSequenceNumber()
Gets sequence number of Header.
Declaration
public int GetSequenceNumber()
Returns
| Type | Description |
|---|---|
| int | Sequence number |
Exceptions
| Type | Condition |
|---|---|
| InvalidIOException | Thrown when an internal IO error occurs. |
GetTag()
Gets tag of Header.
Declaration
public string GetTag()
Returns
| Type | Description |
|---|---|
| string | Tag |
Exceptions
| Type | Condition |
|---|---|
| InvalidIOException | Thrown when an internal IO error occurs. |
GetTimeStamp()
Gets time stamp of Header.
Declaration
public TimeStamp GetTimeStamp()
Returns
| Type | Description |
|---|---|
| TimeStamp | Time stamp |
Exceptions
| Type | Condition |
|---|---|
| InvalidIOException | Thrown when an internal IO error occurs. |
SetSequenceNumber(int)
Sets sequence number of Header.
Declaration
public void SetSequenceNumber(int sequenceNumber)
Parameters
| Type | Name | Description |
|---|---|---|
| int | sequenceNumber | The seqence number of Header |
Exceptions
| Type | Condition |
|---|---|
| InvalidIOException | Thrown when an internal IO error occurs. |
SetTag(string)
Sets tag of Header.
Declaration
public void SetTag(string tag)
Parameters
| Type | Name | Description |
|---|---|---|
| string | tag | The tag of Header |
Exceptions
| Type | Condition |
|---|---|
| InvalidIOException | Thrown when an internal IO error occurs. |