Exemplo n.º 1
0
 public PropertyDatabaseDeserializerAttribute(PropertyDatabaseType type)
 {
     this.type = type;
 }
Exemplo n.º 2
0
 public PropertyDatabaseDeserializer(PropertyDatabaseType type, PropertyDeserializerHandler handler)
 {
     this.type    = type;
     this.handler = handler;
 }
Exemplo n.º 3
0
 public static bool DeserializerExists(PropertyDatabaseType type)
 {
     return(s_Deserializers.ContainsKey(type));
 }