Share via


DkmInstalledApplicationInfo.Create Method

Definition

Overloads

Create(String, String, String, String, String, String, Guid)

Create a new DkmInstalledApplicationInfo object instance.

Create(String, String, String, String, String, String, Guid, String)

Create a new DkmInstalledApplicationInfo object instance.

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

Create(String, String, String, String, String, String, Guid)

Create a new DkmInstalledApplicationInfo object instance.

public:
 static Microsoft::VisualStudio::Debugger::DefaultPort::DkmInstalledApplicationInfo ^ Create(System::String ^ AppUserModelId, System::String ^ DisplayName, System::String ^ Executable, System::String ^ SmallLogoPath, System::String ^ BackgroundColor, System::String ^ Description, Guid DefaultDebugEngine);
public static Microsoft.VisualStudio.Debugger.DefaultPort.DkmInstalledApplicationInfo Create (string AppUserModelId, string DisplayName, string Executable, string SmallLogoPath, string BackgroundColor, string Description, Guid DefaultDebugEngine);
public static Microsoft.VisualStudio.Debugger.DefaultPort.DkmInstalledApplicationInfo Create (string AppUserModelId, string DisplayName, string? Executable, string? SmallLogoPath, string? BackgroundColor, string Description, Guid DefaultDebugEngine);
static member Create : string * string * string * string * string * string * Guid -> Microsoft.VisualStudio.Debugger.DefaultPort.DkmInstalledApplicationInfo
Public Shared Function Create (AppUserModelId As String, DisplayName As String, Executable As String, SmallLogoPath As String, BackgroundColor As String, Description As String, DefaultDebugEngine As Guid) As DkmInstalledApplicationInfo

Parameters

AppUserModelId
String

[In] The app user model id.

DisplayName
String

[In] The application display name.

Executable
String

[In,Optional] The executable name.

SmallLogoPath
String

[In,Optional] The application small logo path. For remote this will be the path on the remote system.

BackgroundColor
String

[In,Optional] The application background color.

Description
String

[In] The application description name.

DefaultDebugEngine
Guid

[In] The default debug engine to use for debugging this app. If unable to determine, the default is native.

Returns

[Out] Result of this method call.

Applies to

Create(String, String, String, String, String, String, Guid, String)

Create a new DkmInstalledApplicationInfo object instance.

This API was introduced in Visual Studio 14 Update 2 (DkmApiVersion.VS14Update2).

public:
 static Microsoft::VisualStudio::Debugger::DefaultPort::DkmInstalledApplicationInfo ^ Create(System::String ^ AppUserModelId, System::String ^ DisplayName, System::String ^ Executable, System::String ^ SmallLogoPath, System::String ^ BackgroundColor, System::String ^ Description, Guid DefaultDebugEngine, System::String ^ EntryPoint);
public static Microsoft.VisualStudio.Debugger.DefaultPort.DkmInstalledApplicationInfo Create (string AppUserModelId, string DisplayName, string Executable, string SmallLogoPath, string BackgroundColor, string Description, Guid DefaultDebugEngine, string EntryPoint);
public static Microsoft.VisualStudio.Debugger.DefaultPort.DkmInstalledApplicationInfo Create (string AppUserModelId, string DisplayName, string? Executable, string? SmallLogoPath, string? BackgroundColor, string Description, Guid DefaultDebugEngine, string? EntryPoint);
static member Create : string * string * string * string * string * string * Guid * string -> Microsoft.VisualStudio.Debugger.DefaultPort.DkmInstalledApplicationInfo
Public Shared Function Create (AppUserModelId As String, DisplayName As String, Executable As String, SmallLogoPath As String, BackgroundColor As String, Description As String, DefaultDebugEngine As Guid, EntryPoint As String) As DkmInstalledApplicationInfo

Parameters

AppUserModelId
String

[In] The app user model id.

DisplayName
String

[In] The application display name.

Executable
String

[In,Optional] The executable name.

SmallLogoPath
String

[In,Optional] The application small logo path. For remote this will be the path on the remote system.

BackgroundColor
String

[In,Optional] The application background color.

Description
String

[In] The application description name.

DefaultDebugEngine
Guid

[In] The default debug engine to use for debugging this app. If unable to determine, the default is native.

EntryPoint
String

[In,Optional] The application entry point.

Returns

[Out] Result of this method call.

Applies to