System.Xml.Serialization.XmlReflectionImporter.CreateElementAttribute C# (CSharp) Method

CreateElementAttribute() private static method

private static CreateElementAttribute ( TypeDesc typeDesc ) : XmlElementAttribute
typeDesc TypeDesc
return XmlElementAttribute
        private static XmlElementAttribute CreateElementAttribute(TypeDesc typeDesc)
        {
            XmlElementAttribute xmlElement = new XmlElementAttribute();
            xmlElement.IsNullable = typeDesc.IsOptionalValue;
            return xmlElement;
        }