7 instantiations of PropertyFetcher
Aspire.Microsoft.Data.SqlClient (7)
src\Vendoring\OpenTelemetry.Instrumentation.SqlClient\Implementation\SqlClientDiagnosticListener.cs (7)
30
private readonly PropertyFetcher<object> commandFetcher =
new
("Command");
31
private readonly PropertyFetcher<object> connectionFetcher =
new
("Connection");
32
private readonly PropertyFetcher<object> dataSourceFetcher =
new
("DataSource");
33
private readonly PropertyFetcher<object> databaseFetcher =
new
("Database");
34
private readonly PropertyFetcher<CommandType> commandTypeFetcher =
new
("CommandType");
35
private readonly PropertyFetcher<object> commandTextFetcher =
new
("CommandText");
36
private readonly PropertyFetcher<Exception> exceptionFetcher =
new
("Exception");
8 references to PropertyFetcher
Aspire.Microsoft.Data.SqlClient (8)
src\Vendoring\OpenTelemetry.Instrumentation.SqlClient\Implementation\SqlClientDiagnosticListener.cs (7)
30
private readonly
PropertyFetcher
<object> commandFetcher = new("Command");
31
private readonly
PropertyFetcher
<object> connectionFetcher = new("Connection");
32
private readonly
PropertyFetcher
<object> dataSourceFetcher = new("DataSource");
33
private readonly
PropertyFetcher
<object> databaseFetcher = new("Database");
34
private readonly
PropertyFetcher
<CommandType> commandTypeFetcher = new("CommandType");
35
private readonly
PropertyFetcher
<object> commandTextFetcher = new("CommandText");
36
private 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.