TwclObexServerOperationResult Enumeration

The possible OBEX server operation results that can be returned to the client.

Namespace: wclObex
type
 TwclObexServerOperationResult = (
 orSuccess,
 orForbidden,
 orObjectNotFound,
 orUnsupportedMedia,
 orAccessDenied,
 orUnexpected
 );

The TwclObexServerOperationResult type exposes the following members.

Show:
 NameDescription
orAccessDenied

Similar to orForbidden, but specifically for use when authentication is required and has failed or has not yet been provided.

orForbidden

The request was valid, but the server is refusing action. The user might not have the necessary permissions for an object.

orObjectNotFound

The requested object could not be found.

orSuccess

The success result. Operation completed or started with success.

orUnexpected

Unexpected or unknown OBEX result code.

orUnsupportedMedia

The request entity has a media type which the server or resource does not support. For example, the client uploads an image as image/svg+xml, but the server requires that images use a different format.

Top