10 references to GetCustomAttribute
Microsoft.Extensions.AI.Abstractions (9)
Utilities\AIJsonUtilities.Schema.Create.cs (9)
267
: ctx.
GetCustomAttribute
<DescriptionAttribute>()?.Description;
362
if (ctx.
GetCustomAttribute
<DisplayNameAttribute>() is { } displayNameAttribute)
368
if (ctx.
GetCustomAttribute
<EmailAddressAttribute>() is { } emailAttribute)
373
if (ctx.
GetCustomAttribute
<UrlAttribute>() is { } urlAttribute)
378
if (ctx.
GetCustomAttribute
<RegularExpressionAttribute>() is { } regexAttribute)
383
if (ctx.
GetCustomAttribute
<StringLengthAttribute>() is { } stringLengthAttribute)
395
if (ctx.
GetCustomAttribute
<MinLengthAttribute>() is { } minLengthAttribute)
408
if (ctx.
GetCustomAttribute
<MaxLengthAttribute>() is { } maxLengthAttribute)
421
if (ctx.
GetCustomAttribute
<RangeAttribute>() is { } rangeAttribute)
Microsoft.Extensions.AI.Abstractions.Tests (1)
Utilities\AIJsonUtilitiesTests.cs (1)
251
return context.TypeInfo.Type == typeof(int) && context.
GetCustomAttribute
<DescriptionAttribute>() is DescriptionAttribute attr