Class MediaControlSearchCondition

Definition

Namespace:
Tizen.Multimedia.Remoting
Assembly:
Tizen.Multimedia.Remoting.dll
API Level:
5

Represents the search conditions.

C#
Copy
public class MediaControlSearchCondition : object
Inheritance
MediaControlSearchCondition

Constructors

View Source

MediaControlSearchCondition(MediaControlContentType, String)

Initializes a new instance of the MediaControlSearchCondition class.

Declaration
C#
Copy
public MediaControlSearchCondition(MediaControlContentType type, string keyword)
Parameters
Type Name Description
MediaControlContentType type

The search type.

String keyword

The search keyword.

Remarks

The MediaControlSearchCategory will be set internally by All.

API Level: 6
View Source

MediaControlSearchCondition(MediaControlContentType, String, Bundle)

Initializes a new instance of the MediaControlSearchCondition class.

Declaration
C#
Copy
public MediaControlSearchCondition(MediaControlContentType type, string keyword, Bundle bundle)
Parameters
Type Name Description
MediaControlContentType type

The search type.

String keyword

The search keyword.

Bundle bundle

The extra data.

Remarks

The MediaControlSearchCategory will be set internally by All.

API Level: 5
View Source

MediaControlSearchCondition(MediaControlContentType, MediaControlSearchCategory, String)

Initializes a new instance of the MediaControlSearchCondition class.

Declaration
C#
Copy
public MediaControlSearchCondition(MediaControlContentType type, MediaControlSearchCategory category, string keyword)
Parameters
Type Name Description
MediaControlContentType type

The search type.

MediaControlSearchCategory category

The search category.

String keyword

The search keyword.

API Level: 6
View Source

MediaControlSearchCondition(MediaControlContentType, MediaControlSearchCategory, String, Bundle)

Initializes a new instance of the MediaControlSearchCondition class.

Declaration
C#
Copy
public MediaControlSearchCondition(MediaControlContentType type, MediaControlSearchCategory category, string keyword, Bundle bundle)
Parameters
Type Name Description
MediaControlContentType type

The search type.

MediaControlSearchCategory category

The search category.

String keyword

The search keyword.

Bundle bundle

The extra data.

API Level: 5

Properties

View Source

Bundle

Gets the extra data.

Declaration
C#
Copy
public Bundle Bundle { get; }
Property Value
Type Description
Bundle
API Level: 5
View Source

Category

Gets the search category.

Declaration
C#
Copy
public MediaControlSearchCategory Category { get; }
Property Value
Type Description
MediaControlSearchCategory
API Level: 5
View Source

ContentType

Gets the search content type.

Declaration
C#
Copy
public MediaControlContentType ContentType { get; }
Property Value
Type Description
MediaControlContentType
API Level: 5
View Source

Keyword

Gets the search keyword.

Declaration
C#
Copy
public string Keyword { get; }
Property Value
Type Description
String
API Level: 5

Extension Methods