IDkmExtendedRegisters.SetExtendedRegisterValue Method

Definition

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

public:
 void SetExtendedRegisterValue(Microsoft::VisualStudio::Debugger::DkmThread ^ thread, int registerIndex, System::Collections::ObjectModel::ReadOnlyCollection<System::Byte> ^ value);
public void SetExtendedRegisterValue (Microsoft.VisualStudio.Debugger.DkmThread thread, int registerIndex, System.Collections.ObjectModel.ReadOnlyCollection<byte> value);
abstract member SetExtendedRegisterValue : Microsoft.VisualStudio.Debugger.DkmThread * int * System.Collections.ObjectModel.ReadOnlyCollection<byte> -> unit
Public Sub SetExtendedRegisterValue (thread As DkmThread, registerIndex As Integer, value As ReadOnlyCollection(Of Byte))

Parameters

thread
DkmThread

[In] DkmThread represents a thread running in the target process.

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