0 out of 1 rated this helpful - Rate this topic

VerbsCommon.New Field

Specifies an action that creates a resource. (The Set verb can also be used when creating a resource that includes data, such as the Set-Variable cmdlet).


Namespace: System.Management.Automation
Assembly: System.Management.Automation (in System.Management.Automation.dll)
'Usage
Dim value As String

value = VerbsCommon.New

public:
literal String^ New
public static final String New
public const var New : String

This example shows how this field is used in the Cmdlet attribute.

[Cmdlet(VerbsCommon.New, "Object")]
public class NewObjectCommand : Cmdlet

For consistency with other cmdlets that perform the same action, do not use verbs such as Create, Generate, Build, Make, or Allocate 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 Preview

Send comments about this topic to Microsoft.
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.