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