Microsoft.ApplicationInsights.Wcf.Implementation.MessageCorrelator.Remove(System.Xml.UniqueId)

Here are the examples of the csharp api class Microsoft.ApplicationInsights.Wcf.Implementation.MessageCorrelator.Remove(System.Xml.UniqueId) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: ApplicationInsights-SDK-Labs
Source File: MessageCorrelator.cs
private void OnTimeout(object state)
        {
            var pending = (PendingMessage)state;
            this.Remove(pending.Id);
            this.timeoutCallback?.Invoke(pending.Id, pending.Telemetry);
        }