DkmNativeReturnValueRegister.Create Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Create a new DkmNativeReturnValueRegister object instance.
public:
static Microsoft::VisualStudio::Debugger::Evaluation::DkmNativeReturnValueRegister ^ Create(int Identifier, System::Collections::ObjectModel::ReadOnlyCollection<System::Byte> ^ Value);
public static Microsoft.VisualStudio.Debugger.Evaluation.DkmNativeReturnValueRegister Create (int Identifier, System.Collections.ObjectModel.ReadOnlyCollection<byte> Value);
static member Create : int * System.Collections.ObjectModel.ReadOnlyCollection<byte> -> Microsoft.VisualStudio.Debugger.Evaluation.DkmNativeReturnValueRegister
Public Shared Function Create (Identifier As Integer, Value As ReadOnlyCollection(Of Byte)) As DkmNativeReturnValueRegister
Parameters
- Identifier
- Int32
[In] The code-view register ID constant.
- Value
- ReadOnlyCollection<Byte>
[In] The value of the register. The size of the register in bytes can be found by the length of this array.
Returns
[Out] Result of this method call.