<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="10.0.2" />

Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment

This API supports infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases.
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments { public class WildcardPathSegment : IPathSegment { public static readonly WildcardPathSegment MatchAll; public bool CanProduceStem { get; } public string BeginsWith { get; } public List<string> Contains { get; } public string EndsWith { get; } public WildcardPathSegment(string beginsWith, List<string> contains, string endsWith, StringComparison comparisonType); public bool Match(string value); } }