1 implementation of Tags
Microsoft.AspNetCore.Http.Extensions (1)
TagsAttribute.cs (1)
34public IReadOnlyList<string> Tags { get; }
4 references to Tags
Microsoft.AspNetCore.OpenApi (2)
Services\OpenApiDocumentService.cs (1)
312return tagsMetadata.Tags.Select(tag => new OpenApiTag { Name = tag }).ToList();
Services\OpenApiGenerator.cs (1)
335foreach (var tag in metadataItem.Tags)
Microsoft.AspNetCore.Routing.Tests (1)
Builder\RouteHandlerEndpointRouteBuilderExtensionsTest.cs (1)
783Assert.Equal(new[] { "Some", "Test", "Tags" }, tagsMetadata?.Tags);
MinimalSample (1)
Program.cs (1)
33tags ??= endpoint?.Metadata.GetMetadata<ITagsMetadata>()?.Tags ?? Array.Empty<string>();