Microsoft.ApplicationInsights.Wcf.Implementation.WcfOperationContext.GetIncomingMessageProperty(string)

Here are the examples of the csharp api class Microsoft.ApplicationInsights.Wcf.Implementation.WcfOperationContext.GetIncomingMessageProperty(string) 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: WcfOperationContext.cs
private string GetWebHttpOperationName(OperationContext operationContext)
        {
            var name = WebHttpDispatchOperationSelector.HttpOperationNamePropertyName;
            if (this.HasIncomingMessageProperty(name))
            {
                return this.GetIncomingMessageProperty(name) as string;
            }

            return "<unknown>";
        }