Class SwitchTeam
This command executes the SwitchTeam system command
Lists all teams the user has access to as child commands.
Switches the team the current user is running in, and performs a RefreshAll(IModelLayoutCommon) to run the system under that new teamInheritance
Implements
Inherited Members
Namespace: LemonEdge.Client.Core.Commands
Assembly: ClientCore.dll
Syntax
[CommandDescriptorOptions(Commands.SwitchTeam, null)]
public class SwitchTeam : EPCommandWithDescriptor, IHasChildren<EPCommandWithDescriptor>, IHasChildren, IDisposable, IEPCommandWithDescriptor, IEPCommand, ICommand, ICommandDescriptor
Constructors
SwitchTeam(IModelLayoutCommon)
Creates a new SwitchTeam command that lists all teams the user has access to as child commands.
Declaration
public SwitchTeam(IModelLayoutCommon owner)
Parameters
Type | Name | Description |
---|---|---|
IModelLayoutCommon | owner | The owning context for this command |
SwitchTeam(IModelLayoutCommon, ITeam)
Creates a new SwitchTeam command that switches the current team to the specified one and refreshes the entire system to run under that new team
Declaration
public SwitchTeam(IModelLayoutCommon owner, ITeam team)
Parameters
Type | Name | Description |
---|---|---|
IModelLayoutCommon | owner | The owning context for this command |
ITeam | team | The new team to run the entire system under |
Properties
Description
Declaration
public override string Description { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
HasChildCommands
True if this is the root command listing all possible teams as children
Declaration
public override bool HasChildCommands { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Overrides
IconID
Declaration
public override Guid IconID { get; }
Property Value
Type | Description |
---|---|
System.Guid |
Overrides
Title
Declaration
public override string Title { get; }
Property Value
Type | Description |
---|---|
System.String |
Overrides
Methods
InternalCanExecute(Object)
True if the command is running with an owner of the main application form
Declaration
public override bool InternalCanExecute(object parameter)
Parameters
Type | Name | Description |
---|---|---|
System.Object | parameter | The command parameter |
Returns
Type | Description |
---|---|
System.Boolean | True if the command is running with an owner of the main application form |
Overrides
InternalExecuteAsync(Object)
Switches the team the current user is running in to the specified one, and performs a RefreshAll(IModelLayoutCommon) to run the system under that new team
Declaration
public override Task InternalExecuteAsync(object parameter)
Parameters
Type | Name | Description |
---|---|---|
System.Object | parameter | The command parameter |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A task indicating the completion of the operation |
Overrides
LoadChildrenAsync()
Loads all the teams this user has access to run in
Declaration
public override Task LoadChildrenAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A task indicating the completion of the operation |
Overrides
Switch(IModelLayoutCommon, ITeam)
Switches the team the current user is running in to the specified one, and performs a RefreshAll(IModelLayoutCommon) to run the system under that new team
Declaration
public static Task Switch(IModelLayoutCommon owner, ITeam team)
Parameters
Type | Name | Description |
---|---|---|
IModelLayoutCommon | owner | The owning context this command runs in |
ITeam | team | The new team to switch running the application under |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A task indicating the completion of the operation |