Ejemplo n.º 1
0
 public static string ParseNullableString(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(StringConverter.Parse(reader, context));
 }
Ejemplo n.º 2
0
 public static Guid ParseGuid(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(GuidConverter.Parse(reader));
 }
Ejemplo n.º 3
0
 public static List <Guid> ParseListGuid(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(GuidConverter.ParseCollection(reader, context));
 }
Ejemplo n.º 4
0
 public static int ParseInt(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(IntConverter.Parse(reader));
 }
Ejemplo n.º 5
0
 public static List <int> ParseListInt(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(IntConverter.ParseCollection(reader, context));
 }
Ejemplo n.º 6
0
 public static List <bool> ParseListBool(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(BoolConverter.ParseCollection(reader, context));
 }
Ejemplo n.º 7
0
 public static List <string> ParseListString(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(StringConverter.ParseCollection(reader, context, false));
 }
Ejemplo n.º 8
0
 public static List <decimal?> ParseNullableListDecimal(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(DecimalConverter.ParseNullableCollection(reader, context));
 }
Ejemplo n.º 9
0
 public static bool ParseBool(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(BoolConverter.Parse(reader));
 }
Ejemplo n.º 10
0
 public static decimal?ParseNullableDecimal(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(DecimalConverter.ParseNullable(reader));
 }
Ejemplo n.º 11
0
 public static List <byte[]> ParseListBinary(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(ByteaConverter.ParseCollection(reader, context, true));
 }
Ejemplo n.º 12
0
 public static byte[] ParseBinary(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(ByteaConverter.Parse(reader, context));
 }
Ejemplo n.º 13
0
 public static List <DateTime> ParseListTimestamp(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(TimestampConverter.ParseCollection(reader, context));
 }
Ejemplo n.º 14
0
 public static DateTime ParseTimestamp(Revenj.Utility.BufferedTextReader reader, int context)
 {
     return(TimestampConverter.Parse(reader, context));
 }