System.Xml.Serialization.XmlReflectionImporter.CreateElementAttribute C# (CSharp) Метод

CreateElementAttribute() приватный статический Метод

private static CreateElementAttribute ( TypeDesc typeDesc ) : XmlElementAttribute
typeDesc TypeDesc
Результат XmlElementAttribute
        private static XmlElementAttribute CreateElementAttribute(TypeDesc typeDesc)
        {
            XmlElementAttribute xmlElement = new XmlElementAttribute();
            xmlElement.IsNullable = typeDesc.IsOptionalValue;
            return xmlElement;
        }