Show / Hide Table of Contents

Struct LaunchParameterDeviceConfiguration

The configuration for a parameter when launching.

Implements
System.IEquatable<LaunchParameterDeviceConfiguration>
Inherited Members
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Phoenix.Applications.Launch
Assembly: Phoenix.Abstractions.Applications.dll
Syntax
public struct LaunchParameterDeviceConfiguration : IEquatable<LaunchParameterDeviceConfiguration>

Properties

View Source

CommandLineArguments

Gets or sets the command line arguments.

Declaration
public string CommandLineArguments { readonly get; set; }
Property Value
Type Description
System.String
View Source

PostLaunch

Gets or sets the post-launch operations.

Declaration
public Func<bool> PostLaunch { readonly get; set; }
Property Value
Type Description
System.Func<System.Boolean>
View Source

PreLaunch

Gets or sets the pre-launch operations.

Declaration
public Func<bool> PreLaunch { readonly get; set; }
Property Value
Type Description
System.Func<System.Boolean>
View Source

PreReboot

Gets or sets the pre-reboot operations.

Declaration
public Func<bool> PreReboot { readonly get; set; }
Property Value
Type Description
System.Func<System.Boolean>
View Source

RequiresReboot

Gets or sets a value indicating whether or not the parameter requires a reboot.

Declaration
public bool RequiresReboot { readonly get; set; }
Property Value
Type Description
System.Boolean

Methods

View Source

Equals(LaunchParameterDeviceConfiguration)

Declaration
public bool Equals(LaunchParameterDeviceConfiguration other)
Parameters
Type Name Description
LaunchParameterDeviceConfiguration other
Returns
Type Description
System.Boolean
View Source

Equals(Object)

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
System.Object obj
Returns
Type Description
System.Boolean
Overrides
System.ValueType.Equals(System.Object)
View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
System.Int32
Overrides
System.ValueType.GetHashCode()

Operators

View Source

Equality(LaunchParameterDeviceConfiguration, LaunchParameterDeviceConfiguration)

Determines if an item is equal to another.

Declaration
public static bool operator ==(LaunchParameterDeviceConfiguration left, LaunchParameterDeviceConfiguration right)
Parameters
Type Name Description
LaunchParameterDeviceConfiguration left

The item to compare.

LaunchParameterDeviceConfiguration right

The other item.

Returns
Type Description
System.Boolean

The comparison result.

View Source

Inequality(LaunchParameterDeviceConfiguration, LaunchParameterDeviceConfiguration)

Determines if an item is not equal to another.

Declaration
public static bool operator !=(LaunchParameterDeviceConfiguration left, LaunchParameterDeviceConfiguration right)
Parameters
Type Name Description
LaunchParameterDeviceConfiguration left

The item to compare.

LaunchParameterDeviceConfiguration right

The other item.

Returns
Type Description
System.Boolean

The comparison result.

Implements

System.IEquatable<T>
  • View Source
In This Article
Back to top Generated by DocFX