-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
DictionaryExampleItem.cs
70 lines (63 loc) · 3.5 KB
/
DictionaryExampleItem.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Collections.Generic;
using System.Linq;
using Azure.Core;
namespace Azure.AI.Translation.Text
{
/// <summary> Dictionary Example element. </summary>
public partial class DictionaryExampleItem
{
/// <summary> Initializes a new instance of DictionaryExampleItem. </summary>
/// <param name="normalizedSource">
/// A string giving the normalized form of the source term. Generally, this should be identical
/// to the value of the Text field at the matching list index in the body of the request.
/// </param>
/// <param name="normalizedTarget">
/// A string giving the normalized form of the target term. Generally, this should be identical
/// to the value of the Translation field at the matching list index in the body of the request.
/// </param>
/// <param name="examples"> A list of examples for the (source term, target term) pair. </param>
/// <exception cref="ArgumentNullException"> <paramref name="normalizedSource"/>, <paramref name="normalizedTarget"/> or <paramref name="examples"/> is null. </exception>
internal DictionaryExampleItem(string normalizedSource, string normalizedTarget, IEnumerable<DictionaryExample> examples)
{
Argument.AssertNotNull(normalizedSource, nameof(normalizedSource));
Argument.AssertNotNull(normalizedTarget, nameof(normalizedTarget));
Argument.AssertNotNull(examples, nameof(examples));
NormalizedSource = normalizedSource;
NormalizedTarget = normalizedTarget;
Examples = examples.ToList();
}
/// <summary> Initializes a new instance of DictionaryExampleItem. </summary>
/// <param name="normalizedSource">
/// A string giving the normalized form of the source term. Generally, this should be identical
/// to the value of the Text field at the matching list index in the body of the request.
/// </param>
/// <param name="normalizedTarget">
/// A string giving the normalized form of the target term. Generally, this should be identical
/// to the value of the Translation field at the matching list index in the body of the request.
/// </param>
/// <param name="examples"> A list of examples for the (source term, target term) pair. </param>
internal DictionaryExampleItem(string normalizedSource, string normalizedTarget, IReadOnlyList<DictionaryExample> examples)
{
NormalizedSource = normalizedSource;
NormalizedTarget = normalizedTarget;
Examples = examples.ToList();
}
/// <summary>
/// A string giving the normalized form of the source term. Generally, this should be identical
/// to the value of the Text field at the matching list index in the body of the request.
/// </summary>
public string NormalizedSource { get; }
/// <summary>
/// A string giving the normalized form of the target term. Generally, this should be identical
/// to the value of the Translation field at the matching list index in the body of the request.
/// </summary>
public string NormalizedTarget { get; }
/// <summary> A list of examples for the (source term, target term) pair. </summary>
public IReadOnlyList<DictionaryExample> Examples { get; }
}
}