1MONGOC_URI_GET_OPTION_AS_INT32(3M)ongoDB C DriveMrONGOC_URI_GET_OPTION_AS_INT32(3)
2
3
4
6 mongoc_uri_get_option_as_int32 - mongoc_uri_get_option_as_int32()
7
9 int32
10 mongoc_uri_get_option_as_int32 (const mongoc_uri_t *uri,
11 const char *option,
12 int32 fallback);
13
15 · uri: A mongoc_uri_t.
16
17 · option: The name of an option, case insensitive.
18
19 · fallback: A default value to return.
20
22 Returns the value of the URI option if it is set and of the correct
23 type (int32). Returns fallback if the option is not set, set to an
24 invalid type, or zero.
25
26 Zero is considered "unset", so URIs can be constructed like so, and
27 still accept default values:
28
29 bson_strdup_printf ("mongodb://localhost/?connectTimeoutMS=%d", myvalue)
30
31 If myvalue is non-zero it is the connection timeout; if it is zero the
32 driver uses the default timeout.
33
35 MongoDB, Inc
36
38 2017-present, MongoDB, Inc
39
40
41
42
431.15.2 Nov 06, 2019MONGOC_URI_GET_OPTION_AS_INT32(3)