VerbsCommon.Split Field
Specifies an action that separates parts of a resource. For example, the Split-Path cmdlet returns different parts of a path.
Namespace: System.Management.Automation
Assembly: System.Management.Automation (in System.Management.Automation.dll)
Namespace: System.Management.Automation
Assembly: System.Management.Automation (in System.Management.Automation.dll)
This example shows how this field is used in the Cmdlet attribute.
[Cmdlet(VerbsCommon.Split, "Path")] public class SplitPathCommand : Cmdlet
This verb is paired with Join. For consistency with other cmdlets that perform the same action, do not use the verb Separate for this action.
The verb portion of a cmdlet name specifies the action that is taken by the cmdlet and is specified by the Cmdlet attribute. For more information about the declaration syntax that is used to specify the Cmdlet attribute, see Cmdlet Attribute Declaration.
For more information about the guidelines for selecting verb names, see Cmdlet Verb Names.
Target Platforms
Windows Developer Preview, Windows Server Developer PreviewSend comments about this topic to Microsoft.
