Describes a comparison between two language names.
public enum LanguageNameMatch
| name | value | description |
|---|---|---|
| None | 0 |
Comparison failure. |
| DifferentLanguages | 1 |
The language names use different primary language tag. |
| FirstEmpty | 2 |
The first language name is null or empty. |
| SecondEmpty | 3 |
The second language name is null or empty. |
| DifferentRegions | 4 |
The language names use the same primary language tag but different region tag. |
| FirstNeutral | 5 |
The language names use the same primary language tag, but the first has no region tag. |
| SecondNeutral | 6 |
The language names use the same primary language tag, but the second has no region code. |
| Identical | 7 |
The language names use the same primary language and region tags. |