1 write to Location
Microsoft.DotNet.SwaggerGenerator.CodeGenerator (1)
Modeler\ParameterModel.cs (1)
14Location = location;
5 references to Location
Microsoft.DotNet.SwaggerGenerator.CodeGenerator (5)
Modeler\MethodModel.cs (4)
62Parameters.Where(p => p.Location == ParameterLocation.Path); 65Parameters.Where(p => p.Location == ParameterLocation.Query); 68Parameters.Where(p => p.Location == ParameterLocation.Header); 70public ParameterModel BodyParameter => Parameters.SingleOrDefault(p => p.Location == null);
Modeler\ParameterModel.cs (1)
27return $"{Type} {Name}; Required={Required}, In={Location}";