Liquid XML Data Binder (C++, Java, VB6) / Reference / C# and VB .Net (Deprecated - use Liquid XML Objects) / Reference / SerializationContext / .Net IgnoreUnknownElements - SerializationContext
In This Topic
    .Net IgnoreUnknownElements - SerializationContext
    In This Topic
    This feature has been superseded by Liquid XML Objects.
    (The original functionality is still included in the product)
    Use Liquid XML Objects
    bool IgnoreUnknownElements
      Property Description  
        Property Name IgnoreUnknownElements  
        Property Type bool  
        Accessors Read/Write  
        Description Cause the parser to ignore elements that are not present in the schema.  
        Remarks

    This is mutually exclusive with IgnoreMissingMandatoryElements as you can either ignore what is missing or what is extra, but not both.
    E.g. expect A B C D
    With IgnoreMissingMandatoryElements you can ignore a missing B, i.e. A C D
    With IgnoreUnknownElements you can ignore an unknown C i.e. A C B C D
    But with both set, you cannot process A C D as you don't now know if you have a missing B or if C is an unknown element without looking ahead. I.e. it could be A C D or A C B C D.