//
// Copyright (C) Microsoft. All rights reserved.
//
using Microsoft.PowerShell.Activities;
using System.Management.Automation;
using System.Activities;
using System.Collections.Generic;
using System.ComponentModel;
namespace Microsoft.PowerShell.Utility.Activities
{
///
/// Activity to invoke the Microsoft.PowerShell.Utility\Select-Object command in a Workflow.
///
[System.CodeDom.Compiler.GeneratedCode("Microsoft.PowerShell.Activities.ActivityGenerator.GenerateFromName", "3.0")]
public sealed class SelectObject : PSActivity
{
///
/// Gets the display name of the command invoked by this activity.
///
public SelectObject()
{
this.DisplayName = "Select-Object";
}
///
/// Gets the fully qualified name of the command invoked by this activity.
///
public override string PSCommandName { get { return "Microsoft.PowerShell.Utility\\Select-Object"; } }
// Arguments
///
/// Provides access to the InputObject parameter.
///
[ParameterSpecificCategory]
[DefaultValue(null)]
public InArgument InputObject { get; set; }
///
/// Provides access to the Property parameter.
///
[ParameterSpecificCategory]
[DefaultValue(null)]
public InArgument Property { get; set; }
///
/// Provides access to the ExcludeProperty parameter.
///
[ParameterSpecificCategory]
[DefaultValue(null)]
public InArgument ExcludeProperty { get; set; }
///
/// Provides access to the ExpandProperty parameter.
///
[ParameterSpecificCategory]
[DefaultValue(null)]
public InArgument ExpandProperty { get; set; }
///
/// Provides access to the Unique parameter.
///
[ParameterSpecificCategory]
[DefaultValue(null)]
public InArgument Unique { get; set; }
///
/// Provides access to the Last parameter.
///
[ParameterSpecificCategory]
[DefaultValue(null)]
public InArgument Last { get; set; }
///
/// Provides access to the First parameter.
///
[ParameterSpecificCategory]
[DefaultValue(null)]
public InArgument First { get; set; }
///
/// Provides access to the Skip parameter.
///
[ParameterSpecificCategory]
[DefaultValue(null)]
public InArgument Skip { get; set; }
///
/// Provides access to the SkipLast parameter.
///
[ParameterSpecificCategory]
[DefaultValue(null)]
public InArgument SkipLast { get; set; }
///
/// Provides access to the Wait parameter.
///
[ParameterSpecificCategory]
[DefaultValue(null)]
public InArgument Wait { get; set; }
///
/// Provides access to the Index parameter.
///
[ParameterSpecificCategory]
[DefaultValue(null)]
public InArgument Index { get; set; }
// Module defining this command
// Optional 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(InputObject.Expression != null)
{
targetCommand.AddParameter("InputObject", InputObject.Get(context));
}
if(Property.Expression != null)
{
targetCommand.AddParameter("Property", Property.Get(context));
}
if(ExcludeProperty.Expression != null)
{
targetCommand.AddParameter("ExcludeProperty", ExcludeProperty.Get(context));
}
if(ExpandProperty.Expression != null)
{
targetCommand.AddParameter("ExpandProperty", ExpandProperty.Get(context));
}
if(Unique.Expression != null)
{
targetCommand.AddParameter("Unique", Unique.Get(context));
}
if(Last.Expression != null)
{
targetCommand.AddParameter("Last", Last.Get(context));
}
if(First.Expression != null)
{
targetCommand.AddParameter("First", First.Get(context));
}
if(Skip.Expression != null)
{
targetCommand.AddParameter("Skip", Skip.Get(context));
}
if(SkipLast.Expression != null)
{
targetCommand.AddParameter("SkipLast", SkipLast.Get(context));
}
if(Wait.Expression != null)
{
targetCommand.AddParameter("Wait", Wait.Get(context));
}
if(Index.Expression != null)
{
targetCommand.AddParameter("Index", Index.Get(context));
}
return new ActivityImplementationContext() { PowerShellInstance = invoker };
}
}
}