LeanCloud C# SDK
Loading...
Searching...
No Matches
Public Member Functions | Properties | List of all members
LeanCloud.Play.PlayObject Class Reference

字典类结构,实现 IDictionary 接口 More...

Inheritance diagram for LeanCloud.Play.PlayObject:

Public Member Functions

void Add (object key, object value)
 增加属性
 
bool ContainsKey (object key)
 是否包含属性
 
bool Remove (object key)
 移除属性
 
bool TryGetValue (object key, out object value)
 尝试获取属性值
 
void Add (KeyValuePair< object, object > item)
 增加属性
 
void Clear ()
 清空属性
 
bool Contains (KeyValuePair< object, object > item)
 是否包含属性
 
void CopyTo (KeyValuePair< object, object >[] array, int arrayIndex)
 拷贝属性到数组
 
bool Remove (KeyValuePair< object, object > item)
 移除属性
 
IEnumerator< KeyValuePair< object, object > > GetEnumerator ()
 获取迭代器
 
 PlayObject (int capacity)
 构造方法
 
 PlayObject ()
 构造方法
 
 PlayObject (IDictionary dictionary)
 构造方法
 
bool TryGetBool (object key, out bool val)
 尝试获取属性的 bool 值
 
bool TryGetByte (object key, out byte val)
 尝试获取属性的 byte 值
 
bool TryGetShort (object key, out short val)
 尝试获取属性的 short 值
 
bool TryGetInt (object key, out int val)
 尝试获取属性的 int 值
 
bool TryGetLong (object key, out long val)
 尝试获取属性的 long 值
 
bool TryGetFloat (object key, out float val)
 尝试获取属性的 float 值
 
bool TryGetDouble (object key, out double val)
 尝试获取属性的 double 值
 
bool TryGetString (object key, out string val)
 尝试获取属性的 string 值
 
bool TryGetBytes (object key, out byte[] val)
 尝试获取属性的 byte[] 值
 
bool TryGetPlayObject (object key, out PlayObject val)
 尝试获取属性的 PlayObject 值
 
bool TryGetPlayArray (object key, out PlayArray val)
 尝试获取属性的 PlayArray 值
 
bool GetBool (object key)
 获取属性 bool 值
 
byte GetByte (object key)
 获取属性 byte 值
 
short GetShort (object key)
 获取属性 short 值
 
int GetInt (object key)
 获取属性 int 值
 
long GetLong (object key)
 获取属性 long 值
 
float GetFloat (object key)
 获取属性 float 值
 
double GetDouble (object key)
 获取属性 double 值
 
string GetString (object key)
 获取属性 string 值
 
byte[] GetBytes (object key)
 获取属性 byte[] 值
 
PlayObject GetPlayObject (object key)
 获取属性 PlayObject 值
 
PlayArray GetPlayArray (object key)
 获取属性 PlayArray 值
 
Get< T > (object key)
 获取属性 T 值
 
bool IsNull (object key)
 属性是否为空
 

Properties

ICollection< object > Keys [get]
 属性名称列表
 
ICollection< object > Values [get]
 属性值列表
 
int Count [get]
 属性数量
 
bool IsReadOnly [get]
 是否只读
 
object this[object key] [get, set]
 获取属性
 
bool IsEmpty [get]
 是否为空
 

Detailed Description

字典类结构,实现 IDictionary 接口

Constructor & Destructor Documentation

◆ PlayObject() [1/3]

LeanCloud.Play.PlayObject.PlayObject ( int  capacity)
inline

构造方法

Parameters
capacity属性数量

◆ PlayObject() [2/3]

LeanCloud.Play.PlayObject.PlayObject ( )
inline

构造方法

◆ PlayObject() [3/3]

LeanCloud.Play.PlayObject.PlayObject ( IDictionary  dictionary)
inline

构造方法

Parameters
dictionary字典对象

Member Function Documentation

◆ Add() [1/2]

void LeanCloud.Play.PlayObject.Add ( KeyValuePair< object, object >  item)
inline

增加属性

Parameters
itemItem.

◆ Add() [2/2]

void LeanCloud.Play.PlayObject.Add ( object  key,
object  value 
)
inline

增加属性

Parameters
key属性名称
value属性值

◆ Clear()

void LeanCloud.Play.PlayObject.Clear ( )
inline

清空属性

◆ Contains()

bool LeanCloud.Play.PlayObject.Contains ( KeyValuePair< object, object >  item)
inline

是否包含属性

Returns
The contains.
Parameters
item属性

◆ ContainsKey()

bool LeanCloud.Play.PlayObject.ContainsKey ( object  key)
inline

是否包含属性

Returns
true, if key was containsed, false otherwise.
Parameters
key属性名称

◆ CopyTo()

void LeanCloud.Play.PlayObject.CopyTo ( KeyValuePair< object, object >[]  array,
int  arrayIndex 
)
inline

拷贝属性到数组

Parameters
array目标属性数组
arrayIndex数组索引

◆ Get< T >()

T LeanCloud.Play.PlayObject.Get< T > ( object  key)
inline

获取属性 T 值

Returns
The get.
Parameters
keyKey.
Template Parameters
TThe 1st type parameter.

◆ GetBool()

bool LeanCloud.Play.PlayObject.GetBool ( object  key)
inline

获取属性 bool 值

Returns
true, if bool was gotten, false otherwise.
Parameters
key属性名称

◆ GetByte()

byte LeanCloud.Play.PlayObject.GetByte ( object  key)
inline

获取属性 byte 值

Returns
The byte.
Parameters
key属性名称

◆ GetBytes()

byte[] LeanCloud.Play.PlayObject.GetBytes ( object  key)
inline

获取属性 byte[] 值

Returns
The bytes.
Parameters
key属性名称

◆ GetDouble()

double LeanCloud.Play.PlayObject.GetDouble ( object  key)
inline

获取属性 double 值

Returns
The double.
Parameters
key属性名称

◆ GetEnumerator()

IEnumerator< KeyValuePair< object, object > > LeanCloud.Play.PlayObject.GetEnumerator ( )
inline

获取迭代器

Returns
The enumerator.

◆ GetFloat()

float LeanCloud.Play.PlayObject.GetFloat ( object  key)
inline

获取属性 float 值

Returns
The float.
Parameters
key属性名称

◆ GetInt()

int LeanCloud.Play.PlayObject.GetInt ( object  key)
inline

获取属性 int 值

Returns
The int.
Parameters
key属性名称

◆ GetLong()

long LeanCloud.Play.PlayObject.GetLong ( object  key)
inline

获取属性 long 值

Returns
The long.
Parameters
key属性名称

◆ GetPlayArray()

PlayArray LeanCloud.Play.PlayObject.GetPlayArray ( object  key)
inline

获取属性 PlayArray 值

Returns
The play array.
Parameters
key属性名称

◆ GetPlayObject()

PlayObject LeanCloud.Play.PlayObject.GetPlayObject ( object  key)
inline

获取属性 PlayObject 值

Returns
The play object.
Parameters
key属性名称

◆ GetShort()

short LeanCloud.Play.PlayObject.GetShort ( object  key)
inline

获取属性 short 值

Returns
The short.
Parameters
key属性名称

◆ GetString()

string LeanCloud.Play.PlayObject.GetString ( object  key)
inline

获取属性 string 值

Returns
The string.
Parameters
key属性名称

◆ IsNull()

bool LeanCloud.Play.PlayObject.IsNull ( object  key)
inline

属性是否为空

Returns
true, if null was ised, false otherwise.
Parameters
keyKey.

◆ Remove() [1/2]

bool LeanCloud.Play.PlayObject.Remove ( KeyValuePair< object, object >  item)
inline

移除属性

Returns
The remove.
Parameters
item属性

◆ Remove() [2/2]

bool LeanCloud.Play.PlayObject.Remove ( object  key)
inline

移除属性

Returns
The remove.
Parameters
key属性名称

◆ TryGetBool()

bool LeanCloud.Play.PlayObject.TryGetBool ( object  key,
out bool  val 
)
inline

尝试获取属性的 bool 值

Returns
true, if get bool was tryed, false otherwise.
Parameters
key属性名称
val返回属性值

◆ TryGetByte()

bool LeanCloud.Play.PlayObject.TryGetByte ( object  key,
out byte  val 
)
inline

尝试获取属性的 byte 值

Returns
true, if get byte was tryed, false otherwise.
Parameters
key属性名称
val返回属性值

◆ TryGetBytes()

bool LeanCloud.Play.PlayObject.TryGetBytes ( object  key,
out byte[]  val 
)
inline

尝试获取属性的 byte[] 值

Returns
true, if get bytes was tryed, false otherwise.
Parameters
key属性名称
val返回属性值

◆ TryGetDouble()

bool LeanCloud.Play.PlayObject.TryGetDouble ( object  key,
out double  val 
)
inline

尝试获取属性的 double 值

Returns
true, if get double was tryed, false otherwise.
Parameters
key属性名称
val返回属性值

◆ TryGetFloat()

bool LeanCloud.Play.PlayObject.TryGetFloat ( object  key,
out float  val 
)
inline

尝试获取属性的 float 值

Returns
true, if get float was tryed, false otherwise.
Parameters
key属性名称
val返回属性值

◆ TryGetInt()

bool LeanCloud.Play.PlayObject.TryGetInt ( object  key,
out int  val 
)
inline

尝试获取属性的 int 值

Returns
true, if get int was tryed, false otherwise.
Parameters
key属性名称
val返回属性值

◆ TryGetLong()

bool LeanCloud.Play.PlayObject.TryGetLong ( object  key,
out long  val 
)
inline

尝试获取属性的 long 值

Returns
true, if get long was tryed, false otherwise.
Parameters
key属性名称
val返回属性值

◆ TryGetPlayArray()

bool LeanCloud.Play.PlayObject.TryGetPlayArray ( object  key,
out PlayArray  val 
)
inline

尝试获取属性的 PlayArray 值

Returns
true, if get play array was tryed, false otherwise.
Parameters
key属性名称
val返回属性值

◆ TryGetPlayObject()

bool LeanCloud.Play.PlayObject.TryGetPlayObject ( object  key,
out PlayObject  val 
)
inline

尝试获取属性的 PlayObject 值

Returns
true, if get play object was tryed, false otherwise.
Parameters
key属性名称
val返回属性值

◆ TryGetShort()

bool LeanCloud.Play.PlayObject.TryGetShort ( object  key,
out short  val 
)
inline

尝试获取属性的 short 值

Returns
true, if get short was tryed, false otherwise.
Parameters
key属性名称
val返回属性值

◆ TryGetString()

bool LeanCloud.Play.PlayObject.TryGetString ( object  key,
out string  val 
)
inline

尝试获取属性的 string 值

Returns
true, if get string was tryed, false otherwise.
Parameters
key属性名称
val返回属性值

◆ TryGetValue()

bool LeanCloud.Play.PlayObject.TryGetValue ( object  key,
out object  value 
)
inline

尝试获取属性值

Returns
true, if get value was tryed, false otherwise.
Parameters
key属性名称
value属性值

Property Documentation

◆ Count

int LeanCloud.Play.PlayObject.Count
get

属性数量

The count.

◆ IsEmpty

bool LeanCloud.Play.PlayObject.IsEmpty
get

是否为空

true if is empty; otherwise, false.

◆ IsReadOnly

bool LeanCloud.Play.PlayObject.IsReadOnly
get

是否只读

true if is read only; otherwise, false.

◆ Keys

ICollection<object> LeanCloud.Play.PlayObject.Keys
get

属性名称列表

The keys.

◆ this[object key]

object LeanCloud.Play.PlayObject.this[object key]
getset

获取属性

Parameters
key属性名称

◆ Values

ICollection<object> LeanCloud.Play.PlayObject.Values
get

属性值列表

The values.


The documentation for this class was generated from the following file: