Exemplo n.º 1
0
        public AppInstallVisitsSchema(SerializationInfo info, StreamingContext context)
        {
            string value             = info.GetString("info");
            AppInstallVisitsSchema v = Deserialize(value);

            this.AppInstallClickId = v.AppInstallClickId;
            this.Visit             = v.Visit;
        }
Exemplo n.º 2
0
 public static string Serialize(AppInstallVisitsSchema schema)
 {
     return(JsonConvert.SerializeObject(schema, Formatting.Indented));
 }