Foxit PDF SDK
|
Inherits Object.
Public Types | |
enum | ResponseType { e_TypeNone = 0, e_TypeCRL = 1, e_TypeOCSP = 2 } |
Enumeration for response type. More... | |
Public Member Functions | |
Response (ResponseType type, const String &response_data) | |
Constructor, with parameters. More... | |
Response () | |
Constructor. | |
Response (const Response &other) | |
Constructor, with another response object. More... | |
~Response () | |
Destructor. | |
bool | operator != (const Response &other) const |
Not equal operator. More... | |
Response & | operator= (const Response &other) |
Assign operator. More... | |
bool | operator== (const Response &other) const |
Equal operator. More... | |
void | Set (ResponseType type, const String &response_data) |
Set value. More... | |
Public Attributes | |
String | response_data |
Response content. | |
ResponseType | type |
Response type. Please refer to values starting from Response::e_TypeNone and this should be one of these values. | |
This class represents a response for a certificate.
|
inline |
Constructor, with parameters.
[in] | type | Response type. Please refer to values starting from Response::e_TypeNone and this should be one of these values. |
[in] | response_data | Response content. |
|
inline |
Constructor, with another response object.
[in] | other | Another response object. |
|
inline |
Not equal operator.
[in] | other | Another response object. This function will check if current object is not equal to this one. |
Assign operator.
[in] | other | Another response object, whose value would be assigned to current object. |
|
inline |
Equal operator.
[in] | other | Another response object. This function will check if current object is equal to this one. |
|
inline |
Set value.
[in] | type | Response type. Please refer to values starting from Response::e_TypeNone and this should be one of these values. |
[in] | response_data | Response content. |