1 write to Type
Microsoft.DotNet.SwaggerGenerator.CodeGenerator (1)
Modeler\ParameterModel.cs (1)
12
Type
= type;
5 references to Type
Microsoft.DotNet.SwaggerGenerator.CodeGenerator (5)
Modeler\MethodModel.cs (2)
45
Parameters.Where(p => p.
Type
is TypeReference.ConstantTypeReference).OrderBy(p => p.Name);
48
Parameters.Where(p => !(p.
Type
is TypeReference.ConstantTypeReference)).OrderBy(p => p.Name);
Modeler\ParameterModel.cs (3)
19
public bool IsConstant =>
Type
is TypeReference.ConstantTypeReference;
20
public bool IsArray =>
Type
is TypeReference.ArrayTypeReference;
24
return $"{
Type
} {Name}; Required={Required}, In={Location}";