AddMemberCommand Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This class implements get-member command.
public ref class AddMemberCommand : System::Management::Automation::PSCmdlet
public class AddMemberCommand : System.Management.Automation.PSCmdlet
[System.Management.Automation.Cmdlet("Add", "Member", DefaultParameterSetName="TypeNameSet", HelpUri="https://go.microsoft.com/fwlink/?LinkID=2097109", RemotingCapability=System.Management.Automation.RemotingCapability.None)]
public class AddMemberCommand : System.Management.Automation.PSCmdlet
[System.Management.Automation.Cmdlet("Add", "Member", DefaultParameterSetName="TypeNameSet", HelpUri="https://go.microsoft.com/fwlink/?LinkID=113280", RemotingCapability=System.Management.Automation.RemotingCapability.None)]
public class AddMemberCommand : System.Management.Automation.PSCmdlet
type AddMemberCommand = class
inherit PSCmdlet
[<System.Management.Automation.Cmdlet("Add", "Member", DefaultParameterSetName="TypeNameSet", HelpUri="https://go.microsoft.com/fwlink/?LinkID=2097109", RemotingCapability=System.Management.Automation.RemotingCapability.None)>]
type AddMemberCommand = class
inherit PSCmdlet
[<System.Management.Automation.Cmdlet("Add", "Member", DefaultParameterSetName="TypeNameSet", HelpUri="https://go.microsoft.com/fwlink/?LinkID=113280", RemotingCapability=System.Management.Automation.RemotingCapability.None)>]
type AddMemberCommand = class
inherit PSCmdlet
Public Class AddMemberCommand
Inherits PSCmdlet
- Inheritance
- Attributes
Constructors
AddMemberCommand() |
Properties
CommandOrigin |
This property tells you if you were being invoked inside the runspace or if it was an external request. (Inherited from InternalCommand) |
CommandRuntime |
Holds the command runtime object for this command. This object controls what actually happens when a write is called. (Inherited from Cmdlet) |
CurrentPSTransaction |
Gets an object that surfaces the current PowerShell transaction. When this object is disposed, PowerShell resets the active transaction. (Inherited from Cmdlet) |
Events |
Gets the event manager for the current runspace. (Inherited from PSCmdlet) |
Force |
True if we should overwrite a possibly existing member. |
Host |
Gets the host interaction APIs. (Inherited from PSCmdlet) |
InputObject |
The object to add a member to. |
InvokeCommand |
Provides access to utility routines for executing scripts and creating script blocks. (Inherited from PSCmdlet) |
InvokeProvider |
Gets the instance of the provider interface APIs for the current runspace. (Inherited from PSCmdlet) |
JobManager |
Manager for JobSourceAdapters registered. (Inherited from PSCmdlet) |
JobRepository |
Repository for jobs. (Inherited from PSCmdlet) |
MemberType |
The member type of to be added. |
MyInvocation |
Contains information about the identity of this cmdlet and how it was invoked. (Inherited from PSCmdlet) |
Name |
The name of the new member. |
NotePropertyMembers |
The NoteProperty members to be set. |
NotePropertyName |
The name of the new NoteProperty member. |
NotePropertyValue |
The value of the new NoteProperty member. |
PagingParameters |
If the cmdlet declares paging support (via SupportsPaging),
then PagingParameters property contains arguments of the paging parameters.
Otherwise PagingParameters property is |
ParameterSetName |
The name of the parameter set in effect. (Inherited from PSCmdlet) |
PassThru |
Gets or sets the parameter -passThru which states output from the command should be placed in the pipeline. |
SecondValue |
Second value of the new member. The meaning of this value changes according to the member type. |
SessionState |
Gets the instance of session state for the current runspace. (Inherited from PSCmdlet) |
Stopping |
Is this command stopping? (Inherited from Cmdlet) |
TypeName |
Add new type name to the specified object for TypeNameSet. |
Value |
First value of the new member. The meaning of this value changes according to the member type. |
Methods
BeginProcessing() |
When overridden in the derived class, performs initialization of command execution. Default implementation in the base class just returns. (Inherited from Cmdlet) |
CurrentProviderLocation(String) | (Inherited from PSCmdlet) |
EndProcessing() |
When overridden in the derived class, performs clean-up after the command execution. Default implementation in the base class just returns. (Inherited from Cmdlet) |
GetResolvedProviderPathFromPSPath(String, ProviderInfo) | (Inherited from PSCmdlet) |
GetResourceString(String, String) |
Gets the resource string corresponding to baseName and resourceId from the current assembly. You should override this if you require a different behavior. (Inherited from Cmdlet) |
GetUnresolvedProviderPathFromPSPath(String) | (Inherited from PSCmdlet) |
GetVariableValue(String, Object) | (Inherited from PSCmdlet) |
GetVariableValue(String) | (Inherited from PSCmdlet) |
Invoke() |
Invoke this cmdlet object returning a collection of results. (Inherited from Cmdlet) |
Invoke<T>() |
Returns a strongly-typed enumerator for the results of this cmdlet. (Inherited from Cmdlet) |
ProcessRecord() |
This method implements the ProcessRecord method for add-member command. |