Class ParameterModel
Contains method (including constructors and lambdas) parameter basic attributes.
public sealed class ParameterModel
- Inheritance
-
ParameterModel
- Extension Methods
Constructors
ParameterModel(string, IType, CodeParameterDirection)
public ParameterModel(string name, IType type, CodeParameterDirection direction)
Parameters
name
stringtype
ITypedirection
CodeParameterDirection
Properties
Description
Gets or sets xml-doc comment text for parameter.
public string? Description { get; set; }
Property Value
Direction
Gets or sets parameter direction.
public CodeParameterDirection Direction { get; set; }
Property Value
Name
Gets or sets parameter name.
public string Name { get; set; }
Property Value
Type
Gets or sets parameter type.
public IType Type { get; set; }