Enum indicating the status of a random number stream.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public enum StreamStatus |
| Visual Basic (Declaration) |
|---|
Public Enumeration StreamStatus |
| Visual C++ |
|---|
public enum class StreamStatus |
Members
| Member name | Description | |
|---|---|---|
| NoError |
No error. Stream is good.
| |
| MemoryAllocationError |
Encountered error allocating memory for the stream.
| |
| InvalidRNGType |
Invalid random number generator type/algorithm.
| |
| InvalidStream |
Stream argument is invalid.
| |
| FileCloseError |
Error closing file while storing or reading a stream to a file.
| |
| FileOpenError |
Error opening file while writing storing or reading to a file.
| |
| FileWriteError |
Error writing to the file while storing stream to a file.
| |
| FileReadError |
Error reading file while restoring stream from a file.
| |
| UnknownError |
All other errors.
|