7 instantiations of PropertyFetcher
Aspire.Microsoft.EntityFrameworkCore.SqlServer (7)
src\Vendoring\OpenTelemetry.Instrumentation.SqlClient\Implementation\SqlClientDiagnosticListener.cs (7)
30private readonly PropertyFetcher<object> commandFetcher = new("Command"); 31private readonly PropertyFetcher<object> connectionFetcher = new("Connection"); 32private readonly PropertyFetcher<object> dataSourceFetcher = new("DataSource"); 33private readonly PropertyFetcher<object> databaseFetcher = new("Database"); 34private readonly PropertyFetcher<CommandType> commandTypeFetcher = new("CommandType"); 35private readonly PropertyFetcher<object> commandTextFetcher = new("CommandText"); 36private readonly PropertyFetcher<Exception> exceptionFetcher = new("Exception");
8 references to PropertyFetcher
Aspire.Microsoft.EntityFrameworkCore.SqlServer (8)
src\Vendoring\OpenTelemetry.Instrumentation.SqlClient\Implementation\SqlClientDiagnosticListener.cs (7)
30private readonly PropertyFetcher<object> commandFetcher = new("Command"); 31private readonly PropertyFetcher<object> connectionFetcher = new("Connection"); 32private readonly PropertyFetcher<object> dataSourceFetcher = new("DataSource"); 33private readonly PropertyFetcher<object> databaseFetcher = new("Database"); 34private readonly PropertyFetcher<CommandType> commandTypeFetcher = new("CommandType"); 35private readonly PropertyFetcher<object> commandTextFetcher = new("CommandText"); 36private readonly PropertyFetcher<Exception> exceptionFetcher = new("Exception");
src\Vendoring\OpenTelemetry.Instrumentation.SqlClient\Shared\DiagnosticSourceInstrumentation\PropertyFetcher.cs (1)
26/// Initializes a new instance of the <see cref="PropertyFetcher{T}"/> class.