Catel.Data.ModelBase.IXmlSerializable C# (CSharp) Метод

IXmlSerializable() приватный Метод

This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return null (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the T:System.Xml.Serialization.XmlSchemaProviderAttribute to the class.
private IXmlSerializable ( ) : XmlSchema
Результат XmlSchema
        XmlSchema IXmlSerializable.GetSchema()
        {
            // As requested by the documentation, we return null
            return null;
        }

Same methods

ModelBase::IXmlSerializable ( XmlReader reader ) : void
ModelBase::IXmlSerializable ( XmlWriter writer ) : void