[This is preliminary documentation and is subject to change.]

Finds IMDB information for titles matching some criteria.

Remarks

IMDB information is retrieved from our database.

Namespace:  Subtitles.Services
Assembly:  Subtitles.Services (in Subtitles.Services)
Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
bool FindIMDB(
	string keyword,
	Nullable<int> year,
	out IMDB[] result,
	out string error
)
Visual Basic (Declaration)
Function FindIMDB ( _
	keyword As String, _
	year As Nullable(Of Integer), _
	<OutAttribute> ByRef result As IMDB(), _
	<OutAttribute> ByRef error As String _
) As Boolean
Visual C++
bool FindIMDB(
	String^ keyword, 
	Nullable<int> year, 
	[OutAttribute] array<IMDB^>^% result, 
	[OutAttribute] String^% error
)

Parameters

keyword
Type: System..::.String
Title or part of title we want to search.
year
Type: System..::.Nullable<(Of <(Int32>)>)
Optional year when title was created.
result
Type: array<Subtitles.Services.Types..::.IMDB>[]()[]%
Array of IMDB structures matching our criteria.
error
Type: System..::.String%
Error description.

Return Value

True on success, false otherwise.

See Also