NavigationCmdletProvider.MoveItemDynamicParameters(String, String) Method
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.
Gives the provider an opportunity to attach additional parameters to the move-item cmdlet.
protected:
virtual System::Object ^ MoveItemDynamicParameters(System::String ^ path, System::String ^ destination);
protected:
virtual Platform::Object ^ MoveItemDynamicParameters(Platform::String ^ path, Platform::String ^ destination);
virtual winrt::Windows::Foundation::IInspectable MoveItemDynamicParameters(std::wstring const & path, std::wstring const & destination);
protected virtual object MoveItemDynamicParameters (string path, string destination);
abstract member MoveItemDynamicParameters : string * string -> obj
override this.MoveItemDynamicParameters : string * string -> obj
Protected Overridable Function MoveItemDynamicParameters (path As String, destination As String) As Object
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 destination container.
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 implementation returns null. (no additional parameters)