DkmSequencePointsUpdate.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 DkmSequencePointsUpdate 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::DkmSequencePointsUpdate ^ Create(System::String ^ FileName, System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::VisualStudio::Debugger::Clr::DkmSourceLineUpdate ^> ^ LineUpdates);
public static Microsoft.VisualStudio.Debugger.Clr.DkmSequencePointsUpdate Create (string FileName, System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.VisualStudio.Debugger.Clr.DkmSourceLineUpdate> LineUpdates);
static member Create : string * System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.VisualStudio.Debugger.Clr.DkmSourceLineUpdate> -> Microsoft.VisualStudio.Debugger.Clr.DkmSequencePointsUpdate
Public Shared Function Create (FileName As String, LineUpdates As ReadOnlyCollection(Of DkmSourceLineUpdate)) As DkmSequencePointsUpdate
Parameters
- FileName
- String
[In] Name of the file which was modified.
- LineUpdates
- ReadOnlyCollection<DkmSourceLineUpdate>
[In] Collection of lines of the file affected by the update.
Returns
[Out] Result of this method call.