Save a binary value in the registry. The SubKey will be created if it does not exists.

Namespace:  Devolutions.Utils
Assembly:  Devolutions.Utils (in Devolutions.Utils.dll)

Syntax

Visual Basic
Public Shared Sub SetBinaryValue ( _
	registryKey As RegistryKey, _
	subKey As String, _
	name As String, _
	value As Byte() _
)
C#
public static void SetBinaryValue(
	RegistryKey registryKey,
	string subKey,
	string name,
	byte[] value
)

Parameters

registryKey
Type: Microsoft.Win32..::..RegistryKey
subKey
Type: System..::..String
name
Type: System..::..String
value
Type: array<System..::..Byte>[]()[][]

See Also