Interface IJsonWrapper
- Namespace
- ThirdParty.Json.LitJson
- Assembly
- AWSSDK.Core.dll
public interface IJsonWrapper : IList, IOrderedDictionary, IDictionary, ICollection, IEnumerable
- Inherited Members
Properties
IsArray
bool IsArray { get; }
Property Value
IsBoolean
bool IsBoolean { get; }
Property Value
IsDouble
bool IsDouble { get; }
Property Value
IsInt
bool IsInt { get; }
Property Value
IsLong
bool IsLong { get; }
Property Value
IsObject
bool IsObject { get; }
Property Value
IsString
bool IsString { get; }
Property Value
IsUInt
bool IsUInt { get; }
Property Value
IsULong
bool IsULong { get; }
Property Value
Methods
GetBoolean()
bool GetBoolean()
Returns
GetDouble()
double GetDouble()
Returns
GetInt()
int GetInt()
Returns
GetJsonType()
JsonType GetJsonType()
Returns
GetLong()
long GetLong()
Returns
GetString()
string GetString()
Returns
GetUInt()
uint GetUInt()
Returns
GetULong()
ulong GetULong()
Returns
SetBoolean(bool)
void SetBoolean(bool val)
Parameters
val
bool
SetDouble(double)
void SetDouble(double val)
Parameters
val
double
SetInt(int)
void SetInt(int val)
Parameters
val
int
SetJsonType(JsonType)
void SetJsonType(JsonType type)
Parameters
type
JsonType
SetLong(long)
void SetLong(long val)
Parameters
val
long
SetString(string)
void SetString(string val)
Parameters
val
string
SetUInt(uint)
void SetUInt(uint val)
Parameters
val
uint
SetULong(ulong)
void SetULong(ulong val)
Parameters
val
ulong
ToJson()
string ToJson()
Returns
ToJson(JsonWriter)
void ToJson(JsonWriter writer)
Parameters
writer
JsonWriter