The
Select-Object cmdlet class that is implemented by Windows PowerShell. This class is included in this SDK for completeness only. The members of this class cannot be used directly, nor should this class be used to derive other classes.
Namespace: Microsoft.PowerShell.Commands
Assembly: Microsoft.PowerShell.Commands.Utility (in microsoft.powershell.commands.utility.dll)

Usage

Syntax
<CmdletAttribute("Select", "Object", DefaultParameterSetName:="DefaultParameter")> _
Public NotInheritable Class SelectObjectCommand
Inherits PSCmdlet
[CmdletAttribute("Select", "Object", DefaultParameterSetName="DefaultParameter")]
public sealed class SelectObjectCommand : PSCmdlet
[CmdletAttribute(L"Select", L"Object", DefaultParameterSetName=L"DefaultParameter")]
public ref class SelectObjectCommand sealed : public PSCmdlet
/** @attribute CmdletAttribute("Select", "Object", DefaultParameterSetName="DefaultParameter") */
public final class SelectObjectCommand extends PSCmdlet
CmdletAttribute("Select", "Object", DefaultParameterSetName="DefaultParameter")
public final class SelectObjectCommand extends PSCmdlet

Remarks
This cmdlet selects specified properties of an object or set of objects. For more information about this cmdlet, see Select-Object in the Microsoft TechNet library.
For Help at the command line, type:
PS>get-help select-object

Inheritance Hierarchy

Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms
Development Platforms
Windows Server 2008, Windows Vista, Windows Server 2003, Windows XP, Windows 7, Windows 2008 R2
Target Platforms
Windows Server 2008, Windows Server 2003, Windows Vista, Windows XP, Windows 7, Windows 2008 R2

See Also