ResponseClassType
extends Enumeration
in package
Defines the status of a response.
Table of Contents
Constants
- ERROR = 'Error'
- Describes a request that cannot be fulfilled.
- SUCCESS = 'Success'
- Describes a request that is fulfilled.
- WARNING = 'Warning'
- Describes a request that was not processed.
Properties
- $_ : string
- Element value.
Methods
- __clone() : mixed
- Clones any object properties on a type object when it is cloned. Allows for a deep clone required when using object to represent data types when making a SOAP call.
- __toString() : string
- Returns the value of this enumeration as a string.
Constants
ERROR
Describes a request that cannot be fulfilled.
public
string
ERROR
= 'Error'
The following are examples of sources of errors:
- Invalid attributes or elements
- Attributes or elements that are out of range
- An unknown tag
- An attribute or element that is not valid in the context
- An unauthorized access attempt by any client
- A server-side failure in response to a valid client-side call
- Information about the error can be found in the ResponseCode and MessageText elements.
Tags
SUCCESS
Describes a request that is fulfilled.
public
string
SUCCESS
= 'Success'
Tags
WARNING
Describes a request that was not processed.
public
string
WARNING
= 'Warning'
A warning may be returned if an error occurred while an item in the request was processing and subsequent items could not be processed. The following are examples of sources of warnings:
- The Exchange store is offline during the batch.
- Active Directory Domain Services (AD DS) is offline.
- Mailboxes were moved.
- The message database (MDB) is offline.
- A password is expired.
- A quota has been exceeded.
Tags
Properties
$_
Element value.
public
string
$_
Tags
Methods
__clone()
Clones any object properties on a type object when it is cloned. Allows for a deep clone required when using object to represent data types when making a SOAP call.
public
__clone() : mixed
__toString()
Returns the value of this enumeration as a string.
public
__toString() : string
.