6 writes to BindParameter
Microsoft.Extensions.AI.Tests (6)
Functions\AIFunctionFactoryTest.cs (6)
572BindParameter = (_, _) => service, 902BindParameter = (p, a) => 948ConfigureParameterBinding = p => new() { BindParameter = (p, a) => sp2 }, 965ConfigureParameterBinding = p => new() { BindParameter = (p, a) => args2 }, 1399BindParameter = (p, a) => 1804BindParameter = (_, args) => args["aliasedKey"],
4 references to BindParameter
Microsoft.Extensions.AI.Abstractions (4)
Functions\AIFunctionFactory.cs (2)
798if (options.BindParameter is not null) 930if (bindingOptions.BindParameter is { } bindParameter)
Functions\AIFunctionFactoryOptions.cs (2)
158/// Typically, this property is set to <see langword="true"/> if and only if <see cref="BindParameter"/> is also set to 159/// non-<see langword="null"/>. While it's possible to exclude the schema when <see cref="BindParameter"/> is <see langword="null"/>,