Show / Hide Table of Contents

Interface ILaunchParameter

The interface for a launch parameter.

Namespace: Phoenix.Applications.Launch
Assembly: Phoenix.Abstractions.Applications.dll
Syntax
public interface ILaunchParameter

Properties

View Source

CommandLine

Gets the command line that the parameter passes to the application.

Declaration
string CommandLine { get; }
Property Value
Type Description
System.String
View Source

FactoryName

Gets the factory name that the parameter is part of.

Declaration
string FactoryName { get; }
Property Value
Type Description
System.String
View Source

Name

Gets the name of the parameter.

Declaration
string Name { get; }
Property Value
Type Description
System.String
View Source

SupportedDevices

Gets the device types that are supported.

Declaration
IList<string> SupportedDevices { get; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Methods

View Source

Configure(IDevice, IApplication, LaunchConfiguration)

Creates a configuration for the parameter for launching.

Declaration
LaunchParameterDeviceConfiguration Configure(IDevice device, IApplication application, LaunchConfiguration config)
Parameters
Type Name Description
IDevice device

The target device.

IApplication application

The target application.

LaunchConfiguration config

The configuration to use.

Returns
Type Description
LaunchParameterDeviceConfiguration

The launch parameter configuration for the specific device.

  • View Source
In This Article
Back to top Generated by DocFX