ContainerCmdletProvider.CopyItemDynamicParameters
Method
Definition
Gives the provider an opportunity to attach additional parameters to the copy-item cmdlet.
protected virtual object CopyItemDynamicParameters (string path, string destination, bool recurse);
Parameters
- path
- String
If the path was specified on the command line, this is the path to the item to get the dynamic parameters for.
- destination
- String
The path of the item to copy to.
- recurse
- Boolean
Tells the provider to recurse sub-containers when copying.
Returns
Overrides of this method should return an object that has properties and fields decorated with parsing attributes similar to a cmdlet class or a RuntimeDefinedParameterDictionary.
The default implemenation returns null. (no additional parameters)