SoapFaultDetails class

Represents SoapFault details.

Constructors

SoapFaultDetails()
Initializes a new instance of the

Properties

ErrorCode ServiceError?
Gets or sets the error code.
getter/setter pair
errorCode ServiceError?
This is returned by Availability requests.
getter/setter pair
ErrorDetails Map<String?, String?>
Gets or sets the error details dictionary.
getter/setter pair
errorDetails Map<String?, String?>
Dictionary of key/value pairs from the MessageXml node in the fault. Usually empty but there are a few cases where SOAP faults may include MessageXml details (e.g. CASOverBudgetException includes BackoffTime value).
getter/setter pair
ExceptionType String?
Gets or sets the type of the exception.
getter/setter pair
exceptionType String?
This is returned by UM requests. It's the name of the exception that was raised.
getter/setter pair
FaultActor String?
Gets or sets the SOAP fault actor.
getter/setter pair
faultActor String?
getter/setter pair
FaultCode String?
Gets or sets the SOAP fault code.
getter/setter pair
faultCode String?
getter/setter pair
FaultString String?
Gets or sets the SOAP fault string.
getter/setter pair
faultString String?
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
LineNumber int?
Gets or sets the line number.
getter/setter pair
lineNumber int?
When a schema validation error is returned, this is the line number in the request where the error occurred.
getter/setter pair
Message String?
Gets or sets the message.
getter/setter pair
message String?
Message text of the error.
getter/setter pair
PositionWithinLine int?
Gets or sets the position within line.
getter/setter pair
positionWithinLine int?
When a schema validation error is returned, this is the offset into the line of the request where the error occurred.
getter/setter pair
ResponseCode ServiceError?
Gets or sets the response code.
getter/setter pair
responseCode ServiceError?
Response code returned by EWS requests. Default to InternalServerError.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
ParseDetailNode(EwsXmlReader reader) Future<void>
Parses the detail node.
ParseMessageXml(EwsXmlReader reader) Future<void>
Parses the message XML.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

Parse(EwsXmlReader reader, XmlNamespace soapNamespace) Future<SoapFaultDetails>
Parses the soap:Fault content.