File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
UnityMvvmToolkit.Core/Enums
UnityMvvmToolkit.UnityPackage/Assets/Plugins/UnityMvvmToolkit/Runtime/Core/Enums Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 2
2
{
3
3
public enum WarmupType
4
4
{
5
+ /// <summary>
6
+ /// Use this type if you don't specify a converter in the view.
7
+ /// <example>command="PrintIntParameterCommand, 5"</example>
8
+ /// </summary>
5
9
OnlyByType ,
10
+
11
+ /// <summary>
12
+ /// Use this type if you specify a converter in the view.
13
+ /// <example>command="PrintIntParameterCommand, 5, ParameterToIntConverter"</example>
14
+ /// </summary>
6
15
OnlyByName ,
16
+
17
+ /// <summary>
18
+ /// Use this type to cover <see cref="OnlyByType"/> and <see cref="OnlyByName"/> scenarios.
19
+ /// </summary>
7
20
ByTypeAndName
8
21
}
9
22
}
Original file line number Diff line number Diff line change 2
2
{
3
3
public enum WarmupType
4
4
{
5
+ /// <summary>
6
+ /// Use this type if you don't specify a converter in the view.
7
+ /// <example>command="PrintIntParameterCommand, 5"</example>
8
+ /// </summary>
5
9
OnlyByType ,
10
+
11
+ /// <summary>
12
+ /// Use this type if you specify a converter in the view.
13
+ /// <example>command="PrintIntParameterCommand, 5, ParameterToIntConverter"</example>
14
+ /// </summary>
6
15
OnlyByName ,
16
+
17
+ /// <summary>
18
+ /// Use this type to cover <see cref="OnlyByType"/> and <see cref="OnlyByName"/> scenarios.
19
+ /// </summary>
7
20
ByTypeAndName
8
21
}
9
22
}
You can’t perform that action at this time.
0 commit comments