EMS.Services.IEMSResourceResponseContent Methods
InheritedProtected
| AddRef | public | Increments the reference count for this interface. |
| GetArray | public | Returns the response content as an instance of TJSONArray if the response content is a valid JSON array. It raises an exception otherwise. |
| GetBytes | public | Returns the response content as an instance of TBytes if the response content is not empty. It raises an exception otherwise. |
| GetContentType | public | Getter of ContentType. |
| GetObject | public | Returns the response content as an instance of TJSONObject if the response content is a valid JSON object. It raises an exception otherwise. |
| GetStatusCode | public | Getter of StatusCode. |
| GetStream | public | Returns the response content as an instance of TStream if the response content is not empty. It raises an exception otherwise. |
| GetValue | public | Returns the response content as an instance of TJSONValue if the response content is a valid JSON value. It raises an exception otherwise. |
| QueryInterface | public | Returns a reference to a specified interface if the object supports that interface. |
| Release | public | Decrements the reference count for this interface. |
| Supports | public | Indicates whether a given interface supports a specific (another) interface. |
| TryGetArray | public | If the response content is a valid JSON array, TryGetArray fills AJSONArray with the response content as an instance of TJSONArray and returns True. TryGetArray returns False otherwise. |
| TryGetBytes | public | If the response content is not empty, TryGetBytes fills ABytes with the response content as an instance of TBytes and returns True. TryGetBytes returns False otherwise. |
| TryGetObject | public | If the response content is a valid JSON object, TryGetObject fills AJSONObject with the response content as an instance of TJSONObject and returns True. TryGetObject returns False otherwise. |
| TryGetStream | public | If the response content is not empty, TryGetStream fills AStream with the response content as an instance of TStream and returns True. TryGetStream returns False otherwise. |
| TryGetValue | public | If the response content is a valid JSON value, TryGetValue fills AJSONValue with the response content as an instance of TJSONValue and returns True. TryGetValue returns False otherwise. |