DkmClrCodePath.Create Method

Definition

Create a new DkmClrCodePath object instance.

This API was introduced in Visual Studio 15 RTM (DkmApiVersion.VS15RTM).

public:
 static Microsoft::VisualStudio::Debugger::Clr::DkmClrCodePath ^ Create(System::String ^ Name, System::String ^ MetadataName, Microsoft::VisualStudio::Debugger::Clr::DkmClrType ^ ReturnType, Microsoft::VisualStudio::Debugger::Clr::DkmClrCodePathKind Kind, System::Collections::ObjectModel::ReadOnlyCollection<System::Byte> ^ AdditionalData);
public static Microsoft.VisualStudio.Debugger.Clr.DkmClrCodePath Create (string Name, string MetadataName, Microsoft.VisualStudio.Debugger.Clr.DkmClrType ReturnType, Microsoft.VisualStudio.Debugger.Clr.DkmClrCodePathKind Kind, System.Collections.ObjectModel.ReadOnlyCollection<byte> AdditionalData);
static member Create : string * string * Microsoft.VisualStudio.Debugger.Clr.DkmClrType * Microsoft.VisualStudio.Debugger.Clr.DkmClrCodePathKind * System.Collections.ObjectModel.ReadOnlyCollection<byte> -> Microsoft.VisualStudio.Debugger.Clr.DkmClrCodePath
Public Shared Function Create (Name As String, MetadataName As String, ReturnType As DkmClrType, Kind As DkmClrCodePathKind, AdditionalData As ReadOnlyCollection(Of Byte)) As DkmClrCodePath

Parameters

Name
String

[In,Optional] The language-specific name of the code path, if any.

MetadataName
String

[In,Optional] The name of the code path in metadata, if the language-specific name is not available.

ReturnType
DkmClrType

[In,Optional] The return type (if any) of the code path.

Kind
DkmClrCodePathKind

[In] The kind of code path.

AdditionalData
ReadOnlyCollection<Byte>

[In,Optional] Additional data about the code path. Meaning is implementation specific.

Returns

[Out] Result of this method call.

Applies to