-
Notifications
You must be signed in to change notification settings - Fork 5
Server Side
Alexander edited this page Apr 1, 2018
·
1 revision
Params
- int - id
- string - key
- object - value
Server.Sync.Data.Set(1, "name", "Test Name");Params
- int - id
- string - key
Server.Sync.Data.Reset(1, "name");Params
- int - id
- string - key
var name = Server.Sync.Data.Get(1, "name");Params
- int - id
- string - key
bool hasName = Server.Sync.Data.Has(1, "name");