DkmThread.SetExtendedRegisterValue Method

Definition

Sets the value of the extended register in the thread's context.

public:
 void SetExtendedRegisterValue(int RegisterIndex, System::Collections::ObjectModel::ReadOnlyCollection<System::Byte> ^ Value);
public void SetExtendedRegisterValue (int RegisterIndex, System.Collections.ObjectModel.ReadOnlyCollection<byte> Value);
member this.SetExtendedRegisterValue : int * System.Collections.ObjectModel.ReadOnlyCollection<byte> -> unit
Public Sub SetExtendedRegisterValue (RegisterIndex As Integer, Value As ReadOnlyCollection(Of Byte))

Parameters

RegisterIndex
Int32

[In] The CV constant of the register to set. For AVX, this can be any of the YMM register enumeration codes. The caller is expected to set the full YMM register (including the portions which are aliased on XMM registers).

Value
ReadOnlyCollection<Byte>

[In] The value to set the register to. The size of the byte array must match the width of the register being set.

Applies to