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