Class ConventionParseResult<T, U, Z>
- Namespace
- SunamoData.Data
- Assembly
- SunamoData.dll
Represents the result of parsing with convention, containing succeeded and failed items.
public class ConventionParseResult<T, U, Z> where T : notnull where U : notnull
Type Parameters
TThe first key type for succeeded items.
UThe second key type for succeeded items.
ZThe type of parsed items.
- Inheritance
-
ConventionParseResult<T, U, Z>
- Inherited Members
- Extension Methods
Properties
Failed
Gets or sets the list of items that failed to parse.
public List<Z> Failed { get; set; }
Property Value
- List<Z>
Succeeded
Gets or sets the dictionary of successfully parsed items organized by two levels of keys.
public Dictionary<T, Dictionary<U, List<Z>>> Succeeded { get; set; }
Property Value
- Dictionary<T, Dictionary<U, List<Z>>>