EN
이 콘텐츠는 한국어로 제공되지 않아 영어 버전으로 표시됩니다.
이 항목은 아직 평가되지 않았습니다.- 이 항목 평가

statusCodes object

[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

The feature described in this topic is available only in preview. To use this feature and other new Windows Azure capabilities, sign up for the free preview.


Enumerates the supported HTTP status codes can be returned by Windows Azure Mobile Services.

This object contains the following members:

Properties

 

Member Code

OK

200

CREATED

201

ACCEPTED

202

NO_CONTENT

204

BAD_REQUEST

400

UNAUTHORIZED

401

FORBIDDEN

403

NOT_FOUND

404

CONFLICT

409

INTERNAL_SERVER_ERROR

500

Use the statusCodes object to specify the status code when you call the respond method on the Request object.

function insert(item, user, request) {
    if (item.userid !== user.userId) {
        request.respond(statusCodes.FORBIDDEN, 
        'You may only insert records with your userid.');
    } else {
        request.execute();
    }
}

이 정보가 도움이 되었습니까?
(1500자 남음)
© 2013 Microsoft. All rights reserved.
facebook page visit twitter rss feed newsletter