Mercurial > pub > ImplabNet
view Implab/ICancellable.cs @ 226:9428ea36838e v2
fixed JSON parser error when parsing escaped double quote symbol
author | cin |
---|---|
date | Fri, 25 Aug 2017 02:16:35 +0300 |
parents | 0fa293bb1351 |
children |
line wrap: on
line source
using System; namespace Implab { public interface ICancellable { void Cancel(); void Cancel(Exception reason); } }