using System; using Microsoft.PowerShell.Activities; using System.Activities; using System.Collections.Generic; using System.ComponentModel; namespace Microsoft.PowerShell.Utility.Activities { /// /// Activity to invoke the Microsoft.PowerShell.Utility\Import-LocalizedData command in a Workflow. /// public sealed class ImportLocalizedData : PSRemotingActivity { /// /// Gets the display name of the command invoked by this activity. /// public ImportLocalizedData() { this.DisplayName = "Import-LocalizedData"; } /// /// Gets the fully qualified name of the command invoked by this activity. /// public override string PSCommandName { get { return "Microsoft.PowerShell.Utility\\Import-LocalizedData"; } } // Arguments /// /// Provides access to the UICulture parameter. /// [ParameterSpecificCategory] [DefaultValue(null)] public InArgument UICulture { get; set; } /// /// Provides access to the BaseDirectory parameter. /// [ParameterSpecificCategory] [DefaultValue(null)] public InArgument BaseDirectory { get; set; } /// /// Provides access to the FileName parameter. /// [ParameterSpecificCategory] [DefaultValue(null)] public InArgument FileName { get; set; } /// /// Provides access to the SupportedCommand parameter. /// [ParameterSpecificCategory] [DefaultValue(null)] public InArgument SupportedCommand { get; set; } // Module defining this command // Additional custom code for this activity /// /// Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run. /// /// The NativeActivityContext for the currently running activity. /// A populated instance of System.Management.Automation.PowerShell /// The infrastructure takes responsibility for closing and disposing the PowerShell instance returned. protected override ActivityImplementationContext GetPowerShell(NativeActivityContext context) { System.Management.Automation.PowerShell invoker = global::System.Management.Automation.PowerShell.Create(); System.Management.Automation.PowerShell targetCommand = invoker.AddCommand(PSCommandName); // Initialize the arguments if(UICulture.Expression != null) { targetCommand.AddParameter("UICulture", UICulture.Get(context)); } if(BaseDirectory.Expression != null) { targetCommand.AddParameter("BaseDirectory", BaseDirectory.Get(context)); } //If BaseDirectory is not specified, try to use the workflow base directory. else { throw new ArgumentException(GeneratedActivitiesResources.ImportLocalizedDataWithEmptyEmptyorNullBaseDirectory); } if(FileName.Expression != null) { targetCommand.AddParameter("FileName", FileName.Get(context)); } if(SupportedCommand.Expression != null) { targetCommand.AddParameter("SupportedCommand", SupportedCommand.Get(context)); } return new ActivityImplementationContext() { PowerShellInstance = invoker }; } } }