DkmManagedReturnValueReference.Create(ICorDebugType, ICorDebugValue) Method

Definition

Create a new DkmManagedReturnValueReference object instance.

Location constraint: The caller is required to be in the same process (IDE process or Monitor process) as the implementation component.

This API was introduced in Visual Studio 12 RTM (DkmApiVersion.VS12RTM).

public:
 static Microsoft::VisualStudio::Debugger::Clr::DkmManagedReturnValueReference ^ Create(Microsoft::VisualStudio::CorDebugInterop::ICorDebugType ^ CorType, Microsoft::VisualStudio::CorDebugInterop::ICorDebugValue ^ CorValue);
public:
 static Microsoft::VisualStudio::Debugger::Clr::DkmManagedReturnValueReference ^ Create(Microsoft::VisualStudio::CorDebugInterop::ICorDebugType ^ CorType, Microsoft::VisualStudio::CorDebugInterop::ICorDebugValue ^ CorValue);
 static Microsoft::VisualStudio::Debugger::Clr::DkmManagedReturnValueReference Create(Microsoft::VisualStudio::CorDebugInterop::ICorDebugType const & CorType, Microsoft::VisualStudio::CorDebugInterop::ICorDebugValue const & CorValue);
public static Microsoft.VisualStudio.Debugger.Clr.DkmManagedReturnValueReference Create (Microsoft.VisualStudio.CorDebugInterop.ICorDebugType CorType, Microsoft.VisualStudio.CorDebugInterop.ICorDebugValue CorValue);
static member Create : Microsoft.VisualStudio.CorDebugInterop.ICorDebugType * Microsoft.VisualStudio.CorDebugInterop.ICorDebugValue -> Microsoft.VisualStudio.Debugger.Clr.DkmManagedReturnValueReference
Public Shared Function Create (CorType As ICorDebugType, CorValue As ICorDebugValue) As DkmManagedReturnValueReference

Parameters

CorType
ICorDebugType

[In] ICorDebugType of the return value.

CorValue
ICorDebugValue

[In,Optional] ICorDebugValue from CLR. It is null for value type.

Returns

[Out] Result of this method call.

Applies to