private CmdletParameterMetadataValidateRange Read6_Item(bool isNullable, bool checkType) { XmlQualifiedName type = checkType ? base.GetXsiType() : null; bool flag = false; if (isNullable) { flag = base.ReadNull(); } if ((checkType && (type != null)) && ((type.Name != this.id4_Item) || (type.Namespace != this.id2_Item))) { throw base.CreateUnknownTypeException(type); } if (flag) { return null; } CmdletParameterMetadataValidateRange o = new CmdletParameterMetadataValidateRange(); bool[] flagArray = new bool[2]; while (base.Reader.MoveToNextAttribute()) { if ((!flagArray[0] && (base.Reader.LocalName == this.id64_Min)) && (base.Reader.NamespaceURI == this.id4_Item)) { o.Min = base.CollapseWhitespace(base.Reader.Value); flagArray[0] = true; } else { if ((!flagArray[1] && (base.Reader.LocalName == this.id65_Max)) && (base.Reader.NamespaceURI == this.id4_Item)) { o.Max = base.CollapseWhitespace(base.Reader.Value); flagArray[1] = true; continue; } if (!base.IsXmlnsAttribute(base.Reader.Name)) { base.UnknownNode(o, ":Min, :Max"); } } } base.Reader.MoveToElement(); if (base.Reader.IsEmptyElement) { base.Reader.Skip(); return o; } base.Reader.ReadStartElement(); base.Reader.MoveToContent(); int whileIterations = 0; int readerCount = base.ReaderCount; while ((base.Reader.NodeType != XmlNodeType.EndElement) && (base.Reader.NodeType != XmlNodeType.None)) { if (base.Reader.NodeType == XmlNodeType.Element) { base.UnknownNode(o, ""); } else { base.UnknownNode(o, ""); } base.Reader.MoveToContent(); base.CheckReaderCount(ref whileIterations, ref readerCount); } base.ReadEndElement(); return o; }
private void Write6_Item(string n, string ns, CmdletParameterMetadataValidateRange o, bool isNullable, bool needType) { if (o == null) { if (isNullable) { base.WriteNullTagLiteral(n, ns); } } else { if (!needType && !(o.GetType() == typeof(CmdletParameterMetadataValidateRange))) { throw base.CreateUnknownTypeException(o); } base.WriteStartElement(n, ns, o, false, null); if (needType) { base.WriteXsiType(null, "http://schemas.microsoft.com/cmdlets-over-objects/2009/11"); } base.WriteAttribute("Min", "", o.Min); base.WriteAttribute("Max", "", o.Max); base.WriteEndElement(o); } }