private static void UnmarshallResult(XmlUnmarshallerContext context,CreateJobResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; if (context.IsStartOfDocument) targetDepth += 2; while (context.Read()) { if (context.IsStartElement || context.IsAttribute) { if (context.TestExpression("JobId", targetDepth)) { response.JobId = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("JobType", targetDepth)) { response.JobType = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("AwsShippingAddress", targetDepth)) { response.AwsShippingAddress = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("Signature", targetDepth)) { response.Signature = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("SignatureFileContents", targetDepth)) { response.SignatureFileContents = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("WarningMessage", targetDepth)) { response.WarningMessage = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } } else if (context.IsEndElement && context.CurrentDepth < originalDepth) { return; } } return; }
public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) { CreateJobResponse response = new CreateJobResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.IsStartElement) { if(context.TestExpression("CreateJobResult", 2)) { UnmarshallResult(context, response); continue; } if (context.TestExpression("ResponseMetadata", 2)) { response.ResponseMetadata = ResponseMetadataUnmarshaller.Instance.Unmarshall(context); } } } return response; }
private static void UnmarshallResult(XmlUnmarshallerContext context, CreateJobResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; if (context.IsStartOfDocument) targetDepth += 2; while (context.ReadAtDepth(originalDepth)) { if (context.IsStartElement || context.IsAttribute) { if (context.TestExpression("ArtifactList/member", targetDepth)) { var unmarshaller = ArtifactUnmarshaller.Instance; var item = unmarshaller.Unmarshall(context); response.ArtifactList.Add(item); continue; } if (context.TestExpression("JobId", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.JobId = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("JobType", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.JobType = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("Signature", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.Signature = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("SignatureFileContents", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.SignatureFileContents = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("WarningMessage", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.WarningMessage = unmarshaller.Unmarshall(context); continue; } } } return; }
public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) { CreateJobResponse response = new CreateJobResponse(); while (context.Read()) { if (context.IsStartElement) { if(context.TestExpression("CreateJobResult", 2)) { response.CreateJobResult = CreateJobResultUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("ResponseMetadata", 2)) { response.ResponseMetadata = ResponseMetadataUnmarshaller.GetInstance().Unmarshall(context); } } } return response; }