(input: TelemetryContextIds)
| 156 | } |
| 157 | |
| 158 | override setContext(input: TelemetryContextIds): void { |
| 159 | this.parent.setContext(input); |
| 160 | } |
| 161 | |
| 162 | override withContext(input: TelemetryContextIds): TelemetryClient { |
| 163 | return new ScopedTelemetryClient(this.parent, mergeContext(this.context, input)); |
nothing calls this directly
no test coverage detected