Opc.Ua.Core
NextInt32 Method (IRandomSource)



Opc.Ua.Test Namespace > IRandomSource Interface : NextInt32 Method
The maximum value to return.
Returns a random non-negative integer which does not exceed the specified maximum.
Syntax
'Declaration
 
Function NextInt32( _
   ByVal max As Integer _
) As Integer
'Usage
 
Dim instance As IRandomSource
Dim max As Integer
Dim value As Integer
 
value = instance.NextInt32(max)
int NextInt32( 
   int max
)
int NextInt32( 
   int max
) 

Parameters

max
The maximum value to return.

Return Value

A random value greater than 0 but less than or equal to max.
Exceptions
ExceptionDescription
Thrown if the max parameter is less than zero.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

IRandomSource Interface
IRandomSource Members