public static NodeGroupMemberUnmarshaller GetInstance() { if (instance == null) { instance = new NodeGroupMemberUnmarshaller(); } return(instance); }
public NodeGroup Unmarshall(XmlUnmarshallerContext context) { NodeGroup nodeGroup = new NodeGroup(); int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; if (context.IsStartOfDocument) { targetDepth += 2; } while (context.Read()) { if (context.IsStartElement || context.IsAttribute) { if (context.TestExpression("NodeGroupId", targetDepth)) { nodeGroup.NodeGroupId = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("Status", targetDepth)) { nodeGroup.Status = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("PrimaryEndpoint", targetDepth)) { nodeGroup.PrimaryEndpoint = EndpointUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("NodeGroupMembers/NodeGroupMember", targetDepth)) { nodeGroup.NodeGroupMembers.Add(NodeGroupMemberUnmarshaller.GetInstance().Unmarshall(context)); continue; } } else if (context.IsEndElement && context.CurrentDepth < originalDepth) { return(nodeGroup); } } return(nodeGroup); }