DkmSourceLineUpdate.Create(Int32, Int32) Method

Definition

Create a new DkmSourceLineUpdate object instance.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 16 Update 3 (DkmApiVersion.VS16Update3).

public:
 static Microsoft::VisualStudio::Debugger::Clr::DkmSourceLineUpdate ^ Create(int OldLine, int NewLine);
public static Microsoft.VisualStudio.Debugger.Clr.DkmSourceLineUpdate Create (int OldLine, int NewLine);
static member Create : int * int -> Microsoft.VisualStudio.Debugger.Clr.DkmSourceLineUpdate
Public Shared Function Create (OldLine As Integer, NewLine As Integer) As DkmSourceLineUpdate

Parameters

OldLine
Int32

[In] Line number before the update was made, must be 1-based.

NewLine
Int32

[In] Line number after the update was made, must be 1-based.

Returns

[Out] Result of this method call.

Applies to