Class DeserializationResultBase
- Namespace
- CMS.DataEngine.Serialization
- Assembly
- CMS.DataEngine.dll
Provides information on deserialization process result.
public abstract class DeserializationResultBase
- Inheritance
-
objectDeserializationResultBase
- Derived
- Extension Methods
Remarks
Class is intended for internal and testing purposes.
Properties
FailedFields
Collection of names of fields and raw values that was impossible to deserialize.
public IDictionary<string, string> FailedFields { get; set; }
Property Value
- IDictionary<string, string>
FailedMappings
Collection of names of fields and translation references that was impossible to map to existing DB objects.
public ICollection<FailedMapping> FailedMappings { get; set; }
Property Value
- ICollection<FailedMapping>
Remarks
In most cases, there will be at most single failed mapping present for given field. Occasionally, however, there might be multiple failed mappings for the field.
IsValid
Returns true if deserialized info object contains all fields that were present in its source and all references were successfully mapped to existing DB objects.
public bool IsValid { get; }
Property Value
- bool