CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
timeout.h
1
2#ifndef _aspose_system_threading_timeout_h_
3#define _aspose_system_threading_timeout_h_
4
5#include <system/timespan.h>
6
7namespace System { namespace Threading {
8
12struct Timeout {
14 static ASPOSECPP_SHARED_API const int64_t Infinite = -1;
16 static ASPOSECPP_SHARED_API const TimeSpan InfiniteTimespan;
17};
18
19}} // System::Threading
20#endif // _aspose_system_threading_timeout_h_
Represents a time interval. This type should be allocated on stack and passed to functions by value o...
Definition: timespan.h:59
Definition: db_command.h:9
Threading timeout special values. This is a static type with no instance services....
Definition: timeout.h:12
static const TimeSpan InfiniteTimespan
Infinite timeout of TimeSpan type.
Definition: timeout.h:16
static const int64_t Infinite
Infinite timeout in milliseconds.
Definition: timeout.h:14