Class StatisticsFilter

Definition

Namespace:
Tizen.Network.Stc
Assembly:
Tizen.Network.Stc.dll
API Level:
6

A class for managing the Statistics Filters to match applications.

C#
Copy
public class StatisticsFilter
Inheritance
System.Object
StatisticsFilter

Properties

View Source

AppId

A property for App Id for statistics filter. AppId can be provided to get statistics for a specific application.

Declaration
C#
Copy
public string AppId { get; set; }
Property Value
Type Description
System.String

Application id.

API Level: 6
View Source

From

A property for "from" value of time interval for statistics filter.

Declaration
C#
Copy
public DateTime? From { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

from(start) of time interval.

API Level: 6
View Source

InterfaceType

A property for Interface type for statistics filter.

Declaration
C#
Copy
public NetworkInterface? InterfaceType { get; set; }
Property Value
Type Description
System.Nullable<NetworkInterface>

Interface type.

API Level: 6
View Source

TimePeriod

A property for Time period for statistics filter. This is used to granulate the statistics data.

Declaration
C#
Copy
public TimePeriodType? TimePeriod { get; set; }
Property Value
Type Description
System.Nullable<TimePeriodType>

Time period.

API Level: 6
View Source

To

A property for "to" value of time interval for statistics filter.

Declaration
C#
Copy
public DateTime? To { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

to(end) of time interval.

API Level: 6