Copyright © 2005-2023 MultiMedia Soft

Youtube.ChannelsListSearchItemInfoGet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Obtains a specific information related to one of the channels found through a previous search performed through the Youtube.ChannelsListSearch method.

 

For details about management of Youtube connections refer to How to enumerate and download video/audio clips from Youtube tutorial.

For further details about methods related to Youtube searches refer to the YoutubeMan class.

 

 

Syntax

 

[Visual Basic]

Public Function ChannelsListSearchItemInfoGet (

nIndexItem as Int32,

nInfo as enumYoutubeChannelsSearchInfo

) as String


 

[C#]

public string ChannelsListSearchItemInfoGet (

int nIndexItem,

enumYoutubeChannelsSearchInfo nInfo

);


 

[C++]

public: string ChannelsListSearchItemInfoGet (

int nIndexItem,

enumYoutubeChannelsSearchInfo nInfo

);


 

Parameter

Description

 

 

nIndexItem

Zero-based index of the item to query. The maximum number of available items can be obtained through the Youtube.ChannelsListSearchItemsCountGet method.

nInfo

Type of information that needs to be retrieved.

Supported values are the following:

Mnemonic Value

Value

Meaning

YOUTUBE_SEARCH_CHANNEL_INFO_ID

0

Channel ID

YOUTUBE_SEARCH_CHANNEL_INFO_URL

1

Channel URL

YOUTUBE_SEARCH_CHANNEL_INFO_TITLE

2

Channel title

YOUTUBE_SEARCH_CHANNEL_INFO_THUMBNAIL_URL

3

Url for channel's thumbnail. If needed, the thumbnail image can be downloaded locally through the Youtube.ChannelsListSearchItemThumbnailGet method.

YOUTUBE_SEARCH_CHANNEL_INFO_DESCRIPTION

4

Channel description

YOUTUBE_SEARCH_CHANNEL_INFO_VIDEOS_COUNT

5

Channel video clips count

YOUTUBE_SEARCH_CHANNEL_INFO_SUBSCRIBERS_COUNT

6

Channel subscribers count

YOUTUBE_SEARCH_CHANNEL_INFO_VIEW_COUNT

7

Channel views count

 

 

Return value

 

Value

Meaning

 

 

Empty string

The information is not available or an error occurred (see the LastError property for further error details)

Valid string

String containing the requested information