GetCollectionNames
public BackendCloudSaveCollectionReturnObject GetCollectionNames();
설명
콘솔에 등록된 컬렉션 리스트를 불러옵니다.
- 해당 함수는 SendQueue로 호출할 수 없습니다.
BackendCloudSaveCollectionReturnObject
namespace BackEnd.Functions
{
public sealed class BackendCloudSaveCollectionReturnObject : BackendReturnObject
{
public List<string> GetCollectionNameList()
}
}
Example
동기
var bro = Backend.CloudSave.GetCollectionNames();
if (bro.IsSuccess())
{
foreach(var name in bro.GetCollectionNameList())
{
Debug.Log(name);
}
}
비동기
Backend.CloudSave.GetCollectionNames(bro =>
{
if (bro.IsSuccess())
{
foreach(var name in bro.GetCollectionNameList())
{
Debug.Log(name);
}
}
});
ReturnCase
Success cases
컬렉션이 한개 이상 있는 경우
StatusCode : 200
Message : Success
ReturnValue : GetReturnValuetoJSON 참조
컬렉션이 하나도 없는 경우
StatusCode : 200
Message : Success
ReturnValue : {"result":[]}
GetReturnValuetoJSON
{
"result": [
{
"name": "collection_01"
},
{
"name": "collection_02"
},
{
"name": "collection_03"
}
]
}