Class LocalStorage
Inheritance
System.Object
LocalStorage
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: AltV.Net.Client.dll
Syntax
public class LocalStorage
Methods
|
Improve this Doc
View Source
Clear()
Declaration
|
Improve this Doc
View Source
Delete(String)
Declaration
public void Delete(string key)
Parameters
Type |
Name |
Description |
System.String |
key |
|
|
Improve this Doc
View Source
Get(String, out MValueConst)
Declaration
public void Get(string key, out MValueConst value)
Parameters
Type |
Name |
Description |
System.String |
key |
|
MValueConst |
value |
|
|
Improve this Doc
View Source
Get(String, out Int32)
Declaration
public bool Get(string key, out int result)
Parameters
Type |
Name |
Description |
System.String |
key |
|
System.Int32 |
result |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Get(String, out Single)
Declaration
public bool Get(string key, out float result)
Parameters
Type |
Name |
Description |
System.String |
key |
|
System.Single |
result |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Get(String, out UInt32)
Declaration
public bool Get(string key, out uint result)
Parameters
Type |
Name |
Description |
System.String |
key |
|
System.UInt32 |
result |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Get<T>(String, out T)
Declaration
public bool Get<T>(string key, out T result)
Parameters
Type |
Name |
Description |
System.String |
key |
|
T |
result |
|
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
|
Improve this Doc
View Source
Has(String)
Declaration
public bool Has(string key)
Parameters
Type |
Name |
Description |
System.String |
key |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Save()
Declaration
|
Improve this Doc
View Source
Set(String, in MValueConst)
Declaration
public void Set(string key, in MValueConst value)
Parameters
Type |
Name |
Description |
System.String |
key |
|
MValueConst |
value |
|
|
Improve this Doc
View Source
Set(String, Object)
Declaration
public void Set(string key, object value)
Parameters
Type |
Name |
Description |
System.String |
key |
|
System.Object |
value |
|