C# Class MediaPortal.Plugins.MovingPictures.SignatureBuilders.MatchResult

This struct represents a score card that is the result of comparing a signature with movie information. The value can be used to rank a list of possible matches and to determine if they can be auto-approved.
Show file Open project: damienhaynes/moving-pictures Class Usage Examples

Public Properties

Property Type Description
AlternateTitle string
FromTopSource bool
ImdbMatch bool
TitleScore int
YearScore int

Public Methods

Method Description
AlternateTitleUsed ( ) : bool

Get a value indicating if an alternate title was used for the title score

AutoApprove ( ) : bool

Get a value indicating wether this result can be auto-approved because it meets the minimal requirements

ToString ( ) : string

Method Details

AlternateTitleUsed() public method

Get a value indicating if an alternate title was used for the title score
public AlternateTitleUsed ( ) : bool
return bool

AutoApprove() public method

Get a value indicating wether this result can be auto-approved because it meets the minimal requirements
public AutoApprove ( ) : bool
return bool

ToString() public method

public ToString ( ) : string
return string

Property Details

AlternateTitle public property

public string AlternateTitle
return string

FromTopSource public property

public bool FromTopSource
return bool

ImdbMatch public property

public bool ImdbMatch
return bool

TitleScore public property

public int TitleScore
return int

YearScore public property

public int YearScore
return int