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.

C#
Copy
public class ParcelHeader
Inheritance
System.Object
ParcelHeader

Methods

View Source

GetSequenceNumber()

Gets sequence number of Header.

Declaration
C#
Copy
public int GetSequenceNumber()
Returns
Type Description
Int32

Sequence number

Exceptions
Type Condition
InvalidIOException

Thrown when an internal IO error occurs.

API Level: 9
View Source

GetTag()

Gets tag of Header.

Declaration
C#
Copy
public string GetTag()
Returns
Type Description
System.String

Tag

Exceptions
Type Condition
InvalidIOException

Thrown when an internal IO error occurs.

API Level: 9
View Source

GetTimeStamp()

Gets time stamp of Header.

Declaration
C#
Copy
public TimeStamp GetTimeStamp()
Returns
Type Description
TimeStamp

Time stamp

Exceptions
Type Condition
InvalidIOException

Thrown when an internal IO error occurs.

API Level: 9
View Source

SetSequenceNumber(Int32)

Sets sequence number of Header.

Declaration
C#
Copy
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 Source

SetTag(String)

Sets tag of Header.

Declaration
C#
Copy
public void SetTag(string tag)
Parameters
Type Name Description
System.String tag

The tag of Header

Exceptions
Type Condition
InvalidIOException

Thrown when an internal IO error occurs.

API Level: 9