Class FlagParam
A flag parameter.
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Phoenix.Controls.AutoGeneratedUI.LaunchParameters
Assembly: Phoenix.Controls.LaunchParameters.dll
Syntax
public class FlagParam : BaseLaunchParam, ILaunchParameter
Constructors
View SourceFlagParam()
Initializes a new instance of the FlagParam class.
Declaration
public FlagParam()
FlagParam(String, String)
Initializes a new instance of the FlagParam class.
Declaration
public FlagParam(string factoryName, string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | factoryName | The factory name. |
System.String | name | The parameter name. |
FlagParam(String, String, String)
Initializes a new instance of the FlagParam class.
Declaration
public FlagParam(string factoryName, string name, string commandLine)
Parameters
Type | Name | Description |
---|---|---|
System.String | factoryName | The factory name. |
System.String | name | The parameter name. |
System.String | commandLine | The command line to use. |
Properties
View SourceCommandLine
Gets or sets the command line for the parameter.
Declaration
public override string CommandLine { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
View SourceFactoryName
Gets or sets the factory name for the parameter.
Declaration
public override string FactoryName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
View SourceName
Gets or sets the name of the parameter.
Declaration
public override string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
Methods
View SourceConfigure(IDevice, IApplication, LaunchConfiguration)
Configures a new launch for the parameter.
Declaration
public override LaunchParameterDeviceConfiguration Configure(IDevice device, IApplication application, LaunchConfiguration config)
Parameters
Type | Name | Description |
---|---|---|
IDevice | device | The target device. |
IApplication | application | The target application (on the device specified). |
LaunchConfiguration | config | The launch configuration. |
Returns
Type | Description |
---|---|
LaunchParameterDeviceConfiguration | A new launch parameter configuration for this parameter. |