Class ParcelHeader
Definition
- Namespace:
- Tizen.Applications.RPCPort
- Assembly:
- Tizen.Applications.Common.dll
- API Level:
- 9
The class represents the header information of an RPC Parcel.
public class ParcelHeader
- Inheritance
-
ParcelHeader
Methods
View SourceGetSequenceNumber()
Gets sequence number of Header.
Declaration
public int GetSequenceNumber()
Returns
Type | Description |
---|---|
Int32 | Sequence number |
Exceptions
Type | Condition |
---|---|
InvalidIOException | Thrown when an internal IO error occurs. |
API Level: 9
View SourceGetTag()
Gets tag of Header.
Declaration
public string GetTag()
Returns
Type | Description |
---|---|
String | Tag |
Exceptions
Type | Condition |
---|---|
InvalidIOException | Thrown when an internal IO error occurs. |
API Level: 9
View SourceGetTimeStamp()
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. |
API Level: 9
View SourceSetSequenceNumber(Int32)
Sets sequence number of Header.
Declaration
public void SetSequenceNumber(int sequenceNumber)
Parameters
Type | Name | Description |
---|---|---|
Int32 | sequenceNumber | The seqence number of Header |
Exceptions
Type | Condition |
---|---|
InvalidIOException | Thrown when an internal IO error occurs. |
API Level: 9
View SourceSetTag(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. |