ItemCmdletProvider.GetItemDynamicParameters(String) Method

Definition

Gives the provider an opportunity to attach additional parameters to the get-item cmdlet.

protected:
 virtual System::Object ^ GetItemDynamicParameters(System::String ^ path);
protected:
 virtual Platform::Object ^ GetItemDynamicParameters(Platform::String ^ path);
 virtual winrt::Windows::Foundation::IInspectable GetItemDynamicParameters(std::wstring const & path);
protected virtual object GetItemDynamicParameters (string path);
abstract member GetItemDynamicParameters : string -> obj
override this.GetItemDynamicParameters : string -> obj
Protected Overridable Function GetItemDynamicParameters (path 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.

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)

Applies to