/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) { AssumeRoleWithWebIdentityResponse response = new AssumeRoleWithWebIdentityResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.IsStartElement) { if(context.TestExpression("AssumeRoleWithWebIdentityResult", 2)) { UnmarshallResult(context, response); continue; } if (context.TestExpression("ResponseMetadata", 2)) { response.ResponseMetadata = ResponseMetadataUnmarshaller.Instance.Unmarshall(context); } } } return response; }
private static void UnmarshallResult(XmlUnmarshallerContext context, AssumeRoleWithWebIdentityResponse 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("AssumedRoleUser", targetDepth)) { var unmarshaller = AssumedRoleUserUnmarshaller.Instance; response.AssumedRoleUser = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("Audience", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.Audience = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("Credentials", targetDepth)) { var unmarshaller = CredentialsUnmarshaller.Instance; response.Credentials = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("PackedPolicySize", targetDepth)) { var unmarshaller = IntUnmarshaller.Instance; response.PackedPolicySize = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("Provider", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.Provider = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("SubjectFromWebIdentityToken", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.SubjectFromWebIdentityToken = unmarshaller.Unmarshall(context); continue; } } } return; }
public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) { AssumeRoleWithWebIdentityResponse response = new AssumeRoleWithWebIdentityResponse(); while (context.Read()) { if (context.IsStartElement) { if(context.TestExpression("AssumeRoleWithWebIdentityResult", 2)) { response.AssumeRoleWithWebIdentityResult = AssumeRoleWithWebIdentityResultUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("ResponseMetadata", 2)) { response.ResponseMetadata = ResponseMetadataUnmarshaller.GetInstance().Unmarshall(context); } } } return response; }