資源簡介
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個文件信息
評論
共有 條評論