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