The returned result of the corresponding request.
Inheritance: Amazon.Runtime.AmazonWebServiceResponse
 /// <summary>
 /// Unmarshaller the response from the service to the response class.
 /// </summary>  
 /// <param name="context"></param>
 /// <returns></returns>
 public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
 {
     CreateStreamingDistributionWithTagsResponse response = new CreateStreamingDistributionWithTagsResponse();
     UnmarshallResult(context,response);
     if (context.ResponseData.IsHeaderPresent("ETag"))
         response.ETag = context.ResponseData.GetHeaderValue("ETag");
     if (context.ResponseData.IsHeaderPresent("Location"))
         response.Location = context.ResponseData.GetHeaderValue("Location");
     
     return response;
 }        
        private static void UnmarshallResult(XmlUnmarshallerContext context, CreateStreamingDistributionWithTagsResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth = originalDepth + 1;

            while (context.Read())
            {
                if (context.IsStartElement || context.IsAttribute)
                {
                    if (context.TestExpression("StreamingDistribution", targetDepth))
                    {
                        var unmarshaller = StreamingDistributionUnmarshaller.Instance;
                        response.StreamingDistribution = unmarshaller.Unmarshall(context);
                        continue;
                    }
                }
                else if (context.IsEndElement && context.CurrentDepth < originalDepth)
                {
                    return;
                }
            }
          
            return;
        }