-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAttributeParameterKind.cs
More file actions
38 lines (33 loc) · 966 Bytes
/
AttributeParameterKind.cs
File metadata and controls
38 lines (33 loc) · 966 Bytes
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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020 CodeFactory, LLC
//*****************************************************************************
namespace CodeFactory.DotNet
{
/// <summary>
/// Enumeration that determines the type of attribute parameter data that is being returned.
/// </summary>
public enum AttributeParameterKind
{
/// <summary>
/// Is a simple value.
/// </summary>
Value = 0,
/// <summary>
/// Is a target named type.
/// </summary>
Type = 1,
/// <summary>
/// Is an enumeration item.
/// </summary>
Enum = 2,
/// <summary>
/// Is an array of multiple parameter values.
/// </summary>
Array = 3,
/// <summary>
/// The return data is unknown.
/// </summary>
Unknown = 9999
}
}