• 大小: 25.64MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-06-13
  • 语言: 其他
  • 标签: RoadFlow  2.1  

资源简介

RoadFlow 2.1 源代码 RoadFlow已经不再开源了。 使用的时候注意版权问题。

资源截图

代码片段和文件信息

#region Header
/**
 * IJsonWrapper.cs
 *   Interface that represents a type capable of handling all kinds of JSON
 *   data. This is mainly used when mapping objects through JsonMapper and
 *   it‘s implemented by JsonData.
 *
 * The authors disclaim copyright to this source code. For more details see
 * the COPYING file included with this distribution.
 **/
#endregion


using System.Collections;
using System.Collections.Specialized;


namespace LitJson
{
    public enum JsonType
    {
        None

        object
        Array
        String
        Int
        Long
        Double
        Boolean
    }

    public interface IJsonWrapper : IList IOrderedDictionary
    {
        bool IsArray   { get; }
        bool IsBoolean { get; }
        bool IsDouble  { get; }
        bool IsInt     { get; }
        bool IsLong    { get; }
        bool Isobject  { get; }
        bool IsString  { get; }

        bool     GetBoolean ();
        double   GetDouble ();
        int      GetInt ();
        JsonType GetJsonType ();
        long     GetLong ();
        string   GetString ();

        void SetBoolean  (bool val);
        void SetDouble   (double val);
        void SetInt      (int val);
        void SetJsonType (JsonType type);
        void SetLong     (long val);
        void SetString   (string val);

        string ToJson ();
        void   ToJson (JsonWriter writer);
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-12-21 13:17  DB\
     文件     1669066  2015-12-20 20:38  DB\webform.sql
     目录           0  2015-09-14 20:44  LitJSON\
     目录           0  2015-09-14 20:43  LitJSON\bin\
     目录           0  2015-12-20 21:25  LitJSON\bin\Debug\
     文件       57856  2015-12-20 21:25  LitJSON\bin\Debug\LitJSON.dll
     文件      163328  2015-12-20 21:25  LitJSON\bin\Debug\LitJSON.pdb
     目录           0  2015-09-14 20:43  LitJSON\bin\Release\
     文件       52224  2015-07-26 15:32  LitJSON\bin\Release\LitJSON.dll
     文件      146944  2015-07-26 15:32  LitJSON\bin\Release\LitJSON.pdb
     文件        1410  2015-08-16 09:37  LitJSON\IJsonWrapper.cs
     文件       25371  2015-08-16 09:37  LitJSON\JsonData.cs
     文件        1490  2015-08-16 09:37  LitJSON\JsonException.cs
     文件       30298  2015-08-16 09:37  LitJSON\JsonMapper.cs
     文件        3545  2015-08-16 09:37  LitJSON\JsonMockWrapper.cs
     文件       13832  2015-08-16 09:37  LitJSON\JsonReader.cs
     文件       11643  2015-08-16 09:37  LitJSON\JsonWriter.cs
     文件       23160  2015-08-16 09:37  LitJSON\Lexer.cs
     文件        2888  2015-08-16 09:37  LitJSON\LitJSON.csproj
     目录           0  2015-09-14 20:43  LitJSON\obj\
     目录           0  2015-12-20 21:25  LitJSON\obj\Debug\
     文件        6412  2015-09-14 20:44  LitJSON\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件         858  2015-12-20 21:25  LitJSON\obj\Debug\LitJSON.csproj.FileListAbsolute.txt
     文件       57856  2015-12-20 21:25  LitJSON\obj\Debug\LitJSON.dll
     文件      163328  2015-12-20 21:25  LitJSON\obj\Debug\LitJSON.pdb
     目录           0  2014-08-22 09:34  LitJSON\obj\Debug\TempPE\
     目录           0  2015-09-14 20:43  LitJSON\obj\Release\
     文件        6386  2015-07-26 15:32  LitJSON\obj\Release\DesignTimeResolveAssemblyReferencesInput.cache
     文件         606  2015-07-26 15:32  LitJSON\obj\Release\LitJSON.csproj.FileListAbsolute.txt
     文件        1753  2014-12-09 16:08  LitJSON\obj\Release\LitJSON.csprojResolveAssemblyReference.cache
     文件       52224  2015-07-26 15:32  LitJSON\obj\Release\LitJSON.dll
............此处省略2457个文件信息

评论

共有 条评论