§ WebFlags()
Constructor: Creates a new instance with the specified parameters.
- Parameters
-
§ getFlags()
nByte getFlags |
( |
void |
| ) |
const |
§ setFlags()
Sets the values of all flags at once.
Internally all boolean flags are encoded as bits into a single byte variable. This byte can be retrieved with getFlags() and set with setFlags().
- Parameters
-
- Returns
- a reference to the instance on which it was called to allow for chaining multiple setter calls
- See also
- getFlags()
§ getHttpForward()
bool getHttpForward |
( |
void |
| ) |
const |
- Returns
- the currently set value of the httpWebForward flag
- See also
- setHttpForward()
§ setHttpForward()
WebFlags & setHttpForward |
( |
bool |
httpWebForward | ) |
|
Sets the value of the httpWebForward flag.
- Parameters
-
httpWebForward | true or false |
- Returns
- a reference to the instance on which it was called to allow for chaining multiple setter calls
- See also
- getHttpForward()
§ getSendAuthCookie()
bool getSendAuthCookie |
( |
void |
| ) |
const |
§ setSendAuthCookie()
WebFlags & setSendAuthCookie |
( |
bool |
sendAuthCookie | ) |
|
Sets the value of the sendAuthCookie flag.
- Parameters
-
sendAuthCookie | true or false |
- Returns
- a reference to the instance on which it was called to allow for chaining multiple setter calls
- See also
- getSendAuthCookie()
§ getSendSync()
bool getSendSync |
( |
void |
| ) |
const |
- Returns
- the currently set value of the sendSync flag
- See also
- setSendSync()
§ setSendSync()
Sets the value of the sendSync flag.
- Parameters
-
- Returns
- a reference to the instance on which it was called to allow for chaining multiple setter calls
- See also
- getSendSync()
§ getSendState()
bool getSendState |
( |
void |
| ) |
const |
- Returns
- the currently set value of the sendState flag
- See also
- setSendState()
§ setSendState()
WebFlags & setSendState |
( |
bool |
sendState | ) |
|
Sets the value of the sendState flag.
- Parameters
-
- Returns
- a reference to the instance on which it was called to allow for chaining multiple setter calls
- See also
- getSendState()
§ toString()
- Remarks
- The cost of this function depends a lot on implementation details of the implementing subclasses, but for container classes this function can become quite expensive, if the instance contains huge amounts of data, as its cost for many container class implementations increases disproportionately high to the size of the payload.
- Parameters
-
retStr | reference to a string, to store the return-value in; the information, which is generated by this function, will be attached at the end of any eventually existing previous content of the string |
withTypes | set to true, to include type information in the generated string |
- Returns
- a JString representation of the instance and its contents for debugging purposes.
Implements ToString.