Delete
public BackendReturnObject Delete(string collectionName);
파라미터
Value | Type | Description |
---|---|---|
collectionName | string | 데이터가 위치한 컬렉션 이름 |
설명
저장 데이터를 클라우드 저장소에서 삭제 합니다.
Example
동기
var bro = Backend.CloudSave.Delete("collectionName");
if(bro.IsSuccess())
{
// 요청 성공 시, 처리 코드 작성.
}
비동기
Backend.CloudSave.Delete("collectionName", bro =>
{
if(bro.IsSuccess())
{
// 요청 성공 시, 처리 코드 작성.
}
});
ReturnCase
Success cases
삭제에 성공한 경우
StatusCode : 204
Message : Success
Error cases
컬렉션이 존재하지 않는 경우
StatusCode : 404
Message : not exist folder
Code : NotFound
데이터가 존재하지 않는 경우
StatusCode : 404
Message : not exist file
Code : NotFound