Microsoft.ApplicationInsights.Extensibility.PerfCounterCollector.Implementation.QuickPulse.QuickPulseServiceClient.ProcessResponse C# (CSharp) 메소드

ProcessResponse() 개인적인 정적인 메소드

private static ProcessResponse ( HttpWebResponse response ) : bool?
response System.Net.HttpWebResponse
리턴 bool?
        private static bool? ProcessResponse(HttpWebResponse response)
        {
            bool isSubscribed;
            if (!bool.TryParse(response.GetResponseHeader(QuickPulseConstants.XMsQpsSubscribedHeaderName), out isSubscribed))
            {
                return null;
            }

            return isSubscribed;
        }