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

Adds alternative title for movie.

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

Syntax

C#
bool AddAlternativeTitle(
	Guid session,
	Guid subtitleID,
	string title,
	Guid languageID,
	out string error
)
Visual Basic (Declaration)
Function AddAlternativeTitle ( _
	session As Guid, _
	subtitleID As Guid, _
	title As String, _
	languageID As Guid, _
	<OutAttribute> ByRef error As String _
) As Boolean
Visual C++
bool AddAlternativeTitle(
	Guid session, 
	Guid subtitleID, 
	String^ title, 
	Guid languageID, 
	[OutAttribute] String^% error
)

Parameters

session
Type: System..::.Guid
Unique session identifier obtained by ISession..::.LogIn(String, String, String, String%) method.
subtitleID
Type: System..::.Guid
Unique identifier of subtitle.
title
Type: System..::.String
Alternative title which we want to add.
languageID
Type: System..::.Guid
Language of alternative title.
error
Type: System..::.String%
Error description.

Return Value

True on success, false otherwise.

See Also