-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathICsAttributeParameterValue.cs
More file actions
25 lines (22 loc) · 1.02 KB
/
ICsAttributeParameterValue.cs
File metadata and controls
25 lines (22 loc) · 1.02 KB
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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020-2022 CodeFactory, LLC
//*****************************************************************************
using System.Collections.Generic;
namespace CodeFactory.DotNet.CSharp
{
/// <summary>
/// The model information for an attributes parameter value for c# implementation.
/// </summary>
public interface ICsAttributeParameterValue:ICsModel, IDotNetAttributeParameterValue
{
/// <summary>
/// The type definition of the parameter that was passed. This will be populated if the property ParameterKind is set to 'Type'
/// </summary>
new CsType TypeValue { get; }
/// <summary>
/// Gets an enumeration of all the parameter values that were assigned to the attribute parameter. This will be populated if the property ParameterKind is set to 'Array'
/// </summary>
new IReadOnlyList<CsAttributeParameterValue> Values { get; }
}
}