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

Reports invalid connection between subtitle and video file.

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

Syntax

C#
bool ReportHashLink(
	Guid session,
	Guid subtitleID,
	string videoHash,
	out string error
)
Visual Basic (Declaration)
Function ReportHashLink ( _
	session As Guid, _
	subtitleID As Guid, _
	videoHash As String, _
	<OutAttribute> ByRef error As String _
) As Boolean
Visual C++
bool ReportHashLink(
	Guid session, 
	Guid subtitleID, 
	String^ videoHash, 
	[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.
videoHash
Type: System..::.String
Calculated hash code for video file.

Remarks

TODO: describe hash algorithm.
error
Type: System..::.String%
Error description.

Return Value

True on success, false otherwise.

See Also