Opc.Ua.Core
NextBytes Method (IRandomSource)



Opc.Ua.Test Namespace > IRandomSource Interface : NextBytes Method
The array to update.
The start of the range generate.
The number of bytes to generate.
Fills a range in array of bytes with random numbers.
Syntax
'Declaration
 
Sub NextBytes( _
   ByVal bytes() As Byte, _
   ByVal offset As Integer, _
   ByVal count As Integer _
) 
'Usage
 
Dim instance As IRandomSource
Dim bytes() As Byte
Dim offset As Integer
Dim count As Integer
 
instance.NextBytes(bytes, offset, count)
void NextBytes( 
   byte[] bytes,
   int offset,
   int count
)
void NextBytes( 
   array<byte>^ bytes,
   int offset,
   int count
) 

Parameters

bytes
The array to update.
offset
The start of the range generate.
count
The number of bytes to generate.
Exceptions
ExceptionDescription
Thrown if the bytes parameter is null.
Thrown if the offset or count parameters do not specify a valid range within the bytes parameter.
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