|   | RandomUInt32Between Method | 
        
        
            Generates a cryptographically strong unsigned 32-bit random integer between specified values. i.e. [startNumber-stopNumber)
            
        
        Namespace: GSF.Security.CryptographyAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic static uint UInt32Between(
	uint startNumber,
	uint stopNumber
)
Public Shared Function UInt32Between ( 
	startNumber As UInteger,
	stopNumber As UInteger
) As UInteger
public:
static unsigned int UInt32Between(
	unsigned int startNumber, 
	unsigned int stopNumber
)
static member UInt32Between : 
        startNumber : uint32 * 
        stopNumber : uint32 -> uint32 GSF.Security.Cryptography.Random.UInt32Between = function(startNumber, stopNumber);
Parameters
- startNumber  UInt32
- A UInt32 that is the low end of our range.
- stopNumber  UInt32
- A UInt32 that is the high end of our range.
Return Value
UInt32A 
UInt32 that is generated between the 
startNumber and the 
stopNumber.
 Exceptions
Exceptions| Exception | Condition | 
|---|
| CryptographicException | The cryptographic service provider (CSP) cannot be acquired. | 
 See Also
See Also