DeployToAzure.Management.AzureManagementLowLevelApi.CrackStatusTextFromResponse C# (CSharp) Method

CrackStatusTextFromResponse() private static method

private static CrackStatusTextFromResponse ( HttpResponse response ) : string
response HttpResponse
return string
        private static string CrackStatusTextFromResponse(HttpResponse response)
        {
            var match = Regex.Match(response.Content, "<Status>(.*?)</Status>");
            return match.Groups[1].Value;
        }