* Determines if a specific property should be included in telemetry events * Override in subclasses to filter specific properties
(_propertyName: string)
| 30 | * Override in subclasses to filter specific properties |
| 31 | */ |
| 32 | protected isPropertyCapturable(_propertyName: string): boolean { |
| 33 | return true |
| 34 | } |
| 35 | |
| 36 | protected async getEventProperties(event: TelemetryEvent): Promise<TelemetryEvent["properties"]> { |
| 37 | let providerProperties: TelemetryEvent["properties"] = {} |
no outgoing calls
no test coverage detected