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 SourceCommandLineArguments
Gets or sets the command line arguments.
Declaration
public string CommandLineArguments { readonly get; set; }
Property Value
Type | Description |
---|---|
System.String |
PostLaunch
Gets or sets the post-launch operations.
Declaration
public Func<bool> PostLaunch { readonly get; set; }
Property Value
Type | Description |
---|---|
System.Func<System.Boolean> |
PreLaunch
Gets or sets the pre-launch operations.
Declaration
public Func<bool> PreLaunch { readonly get; set; }
Property Value
Type | Description |
---|---|
System.Func<System.Boolean> |
PreReboot
Gets or sets the pre-reboot operations.
Declaration
public Func<bool> PreReboot { readonly get; set; }
Property Value
Type | Description |
---|---|
System.Func<System.Boolean> |
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 SourceEquals(LaunchParameterDeviceConfiguration)
Declaration
public bool Equals(LaunchParameterDeviceConfiguration other)
Parameters
Type | Name | Description |
---|---|---|
LaunchParameterDeviceConfiguration | other |
Returns
Type | Description |
---|---|
System.Boolean |
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 SourceEquality(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. |
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>